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

Represents collection that can be indexed

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

Syntax

C#
public interface IIndexableCollection<TItem, TIndex> : ICollection<T>, 
	IAddableIndexable<TItem, TIndex>
Visual Basic
Public Interface IIndexableCollection(Of TItem, TIndex) _
	Inherits ICollection(Of T), IAddableIndexable(Of TItem, TIndex)
Visual C++
generic<typename TItem, typename TIndex>
public interface class IIndexableCollection : ICollection<T>, 
	IAddableIndexable<TItem, TIndex>
F#
type IIndexableCollection<'TItem, 'TIndex> =  
    interface
        interface ICollection<'T>
        interface IAddableIndexable<'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