Table of Contents

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

int

this[int]

Retrieves the element at the specified index.

T this[int index] { get; }

Parameters

index int

Property Value

T