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

Collection where items can be added and removed at specified index

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

Syntax

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