Interface IReadOnlyList<T>
An read only list.
Inherited Members
      System.Collections.Generic.IEnumerable<T>.GetEnumerator()
    
  Namespace: Telerik.Pivot.Core
Assembly: Telerik.WinControls.PivotGrid.dll
Syntax
public interface IReadOnlyList<out T> : IEnumerable<T>, IEnumerable
  Type Parameters
| 
        T
         Items type.  | 
    
Properties
Count
Gets the count of items in this IReadOnlyList<T>.
Declaration
int Count { get; }
  Property Value
| 
        System.Int32
         
  | 
    
Item[Int32]
Get the item at position index.
Declaration
T this[int index] { get; }
  Parameters
| 
        System.Int32
        index
         The index.  | 
    
Property Value
| 
        T
         The item.  |