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

Gets or sets data at specified index.

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

Syntax

         
 C#  Visual Basic  Visual C++ 
public IndexData this[
	int index
] { get; set; }
Public Default Property Item ( _
	index As Integer _
) As IndexData
public:
property IndexData default[int index] {
	IndexData get (int index);
	void set (int index, IndexData value);
}

Parameters

index
Int32
Index of data.

Return Value

Data at specified index.

Exceptions

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

See Also