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

Represents IReadOnlyIndexable<(Of <(<'TItem, TIndex>)>)> that provides count of items within it

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

Syntax

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