Interface IIndexedCollection<T>
- Namespace
- RichHudFramework
- Assembly
- RichHudClient.dll
Minimal interface for any indexed collection exposing a count and an indexer.
public interface IIndexedCollection<T>
Type Parameters
T
Properties
Count
Number of elements in the collection.
int Count { get; }
Property Value
this[int]
Retrieves the element at the specified index.
T this[int index] { get; }
Parameters
indexint
Property Value
- T