Interface IReadOnlyCollection<T>
Inherited Members
System.Collections.Generic.IEnumerable<T>.GetEnumerator()
Namespace: Telerik.WinControls.Data
Assembly: Telerik.WinControls.dll
Syntax
public interface IReadOnlyCollection<T> : IEnumerable<T>, IEnumerable
Type Parameters
T
|
Properties
Count
Gets the count.
Declaration
int Count { get; }
Property Value
System.Int32
The count. |
Item[Int32]
Gets the item at the specified index.
Declaration
T this[int index] { get; }
Parameters
System.Int32
index
|
Property Value
T
|
Methods
Contains(T)
Determines whether [contains] [the specified value].
Declaration
bool Contains(T value)
Parameters
T
value
The value. |
Returns
System.Boolean
|
CopyTo(T[], Int32)
Copies to.
Declaration
void CopyTo(T[] array, int index)
Parameters
T[]
array
The array. |
System.Int32
index
The index. |
IndexOf(T)
Indexes the of.
Declaration
int IndexOf(T value)
Parameters
T
value
The value. |
Returns
System.Int32
|