[]
Gets or sets the element with the specified key.
protected object this[string key] { get; set; }
Protected Default Property Item(key As String) As Object
Type | Name | Description |
---|---|---|
string | key |
Type | Description |
---|---|
object | The string value that indicates the key of the specified element. |
Gets or sets the element at the specified index.
protected object this[int index] { get; set; }
Protected Default Property Item(index As Integer) As Object
Type | Name | Description |
---|---|---|
int | index |
Type | Description |
---|---|
object | The int value that indicates the index of the specified element. |