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

Represents somethign 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 IIndexableEnumerable<TItem, TIndex> : IReadOnlyIndexableEnumerable<TItem, TIndex>, 
	IIndexable<TItem, TIndex>
Visual Basic
Public Interface IIndexableEnumerable(Of TItem, TIndex) _
	Inherits IReadOnlyIndexableEnumerable(Of TItem, TIndex), IIndexable(Of TItem, TIndex)
Visual C++
generic<typename TItem, typename TIndex>
public interface class IIndexableEnumerable : IReadOnlyIndexableEnumerable<TItem, TIndex>, 
	IIndexable<TItem, TIndex>
F#
type IIndexableEnumerable<'TItem, 'TIndex> =  
    interface
        interface IReadOnlyIndexableEnumerable<'TItem, 'TIndex>
        interface IIndexable<'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