Interface
IReadOnlyCollection<T>

Definition

Namespace:Telerik.WinControls.Data

Assembly:Telerik.WinControls.dll

Type Parameters:

T

Syntax:

cs-api-definition
public interface IReadOnlyCollection<T> : IEnumerable

Inherited Members IEnumerable.GetEnumerator()

Properties

Count

Gets the count.

Declaration

cs-api-definition
int Count { get; }

Property Value

int

The count.

this[int]

Gets the item at the specified index.

Declaration

cs-api-definition
T this[int index] { get; }

Parameters

index

int

Property Value

T

Methods

Contains(T)

Determines whether [contains] [the specified value].

Declaration

cs-api-definition
bool Contains(T value)

Parameters

value

T

The value.

Returns

bool

true if [contains] [the specified value]; otherwise, false.

CopyTo(T[], int)

Copies to.

Declaration

cs-api-definition
void CopyTo(T[] array, int index)

Parameters

array

T[]

The array.

index

int

The index.

IndexOf(T)

Indexes the of.

Declaration

cs-api-definition
int IndexOf(T value)

Parameters

value

T

The value.

Returns

int