Gets or sets the element at the specified index.

Namespace: Dapfor.Wpf.Data
Assembly: Dapfor.Wpf (in Dapfor.Wpf.dll) Version: 4.1.0.26317 (4.1.0.26317)

Syntax

C#
public T this[
	int index
] { get; set; }
Visual Basic
Public Default Property Item ( 
	index As Integer
) As T
	Get
	Set
Visual C++
public:
virtual property T default[int index] {
	T get (int index) sealed;
	void set (int index, T value) sealed;
}
F#
abstract Item : 'T with get, set
override Item : 'T with get, set

Parameters

index
Type: System..::..Int32
The index.

Return Value

Type: T
T

Implements

IList<(Of <(<'T>)>)>..::..Item[([( Int32])])

See Also