Gets or sets the [!:T] at the specified index.
Namespace: Dapfor.Net.DataAssembly: Dapfor.Net (in Dapfor.Net.dll) Version: 2.10.3.24917 (2.10.3.24917)
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
Property Value
Type:
TThe zero-based index of the element to get or set.
Implements
IList<(Of <(<'T>)>)>..::..Item[([( Int32])]) See Also