[This is preliminary documentation and is subject to change.]

Returns data at specified index.

Namespace:  MulLib
Assembly:  MulLib (in MulLib.dll) Version: 1.0.0.0

Syntax

         
 C#  Visual Basic  Visual C++ 
public IndexData Get(
	int index,
	bool create
)
Public Function Get ( _
	index As Integer, _
	create As Boolean _
) As IndexData
public:
IndexData Get(
	int index, 
	bool create
)

Parameters

index
Int32
Index of data.
create
Boolean
If true list is automaticly resized; otherwise exception is thrown.

Return Value

Data at specified index.

Exceptions

ExceptionCondition
System..::.ArgumentOutOfRangeExceptionThrown when create is false and index is less than zero or equal to or greater than Count.
System..::.ObjectDisposedExceptionObject has been disposed.

See Also