[]
Gets the element at the specified index.
public abstract TItem this[int index] { get; }
| 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; }
| Type | Name | Description |
|---|---|---|
| string | name | The name of the element to get. |
| Type | Description |
|---|---|
| TItem | The element with specified name. |