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

Represents collection which allows adding items

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

Syntax

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

Type Parameters

T
Type of items in clollection

See Also