[This is preliminary documentation and is subject to change.]
Looks up an object in the IndexedList by string key.
| C# |
public T this[ string key ] { get; }
- key (String)
- The value to look up.
The T object indexed by the key, or null if none is found.
The key index used will be that defined by the stringIndex
parameter passed to the IndexedList constructor.
| Exception | Condition |
|---|---|
| ArgumentException | Throw if no string index is defined for
the IndexedList. |