[This is preliminary documentation and is subject to change.]

Represents something read-only that can be indexed and enumerated

Namespace: Tools.CollectionsT.GenericT
Assembly: Tools (in Tools.dll) Version: 1.5.3.38916 (1.5.3.38916)

Syntax

C#
public interface IReadOnlyIndexableEnumerable<TItem, TIndex> : IEnumerable<T>, 
	IReadOnlyIndexable<TItem, TIndex>
Visual Basic
Public Interface IReadOnlyIndexableEnumerable(Of TItem, TIndex) _
	Inherits IEnumerable(Of T), IReadOnlyIndexable(Of TItem, TIndex)
Visual C++
generic<typename TItem, typename TIndex>
public interface class IReadOnlyIndexableEnumerable : IEnumerable<T>, 
	IReadOnlyIndexable<TItem, TIndex>
F#
type IReadOnlyIndexableEnumerable<'TItem, 'TIndex> =  
    interface
        interface IEnumerable<'T>
        interface IReadOnlyIndexable<'TItem, 'TIndex>
    end
JScript
JScript does not support generic types or methods.

Type Parameters

TItem
Type of index
TIndex
Type of items in collection

See Also