[]
Gets the element at the specified index.
public abstract TItem this[int index] { get; }
Public MustOverride ReadOnly Default Property Item(index As Integer) As TItem
| Type | Name | Description |
|---|---|---|
| int | index | The zero-based index of the element to get. |
| Type | Description |
|---|---|
| TItem | The element at specified index. |
Gets the element with specified name.
public TItem this[string name] { get; }
Public ReadOnly Default Property Item(name As String) As TItem
| Type | Name | Description |
|---|---|---|
| string | name | The name of the element to get. |
| Type | Description |
|---|---|
| TItem | The element with specified name. |