SetDocumentation.ICollection(Int32).Add Method

Sandcastle XML Comments

Sandcastle XML Comments GuideSetDocumentationICollectionInt32Add Method
Adds an item to the ICollectionT.

Namespace: XMLCommentsExamples.DocumentationInheritance
Assembly: XMLCommentsExamples (in XMLCommentsExamples.dll) Version: 2014.1.26.0
Syntax
void ICollection<int>.Add(
	int item
)
Private Sub Add ( 
	item As Integer
) Implements ICollection(Of Integer).Add
private:
virtual void Add(
	int item
) sealed = ICollection<int>::Add
private abstract Add : 
        item : int -> unit 
private override Add : 
        item : int -> unit 

Parameters

item
Type: SystemInt32
The object to add to the ICollectionT.

Implements

ICollectionTAdd(T)
Exceptions
ExceptionCondition
NotSupportedExceptionThe ICollectionT is read-only.
See Also