Foley .NET Utilities Class Library

IList2.Add Method 

When implemented by a class, adds the elements of the specified ICollection to the end of the list.

[Visual Basic]
Function Add( _
   ByVal collection As ICollection _
) As Boolean
[C#]
bool Add(
   ICollection collection
);

Parameters

collection
The ICollection whose elements are to be added to the list.

Return Value

true if the list is modified; otherwise false.

Exceptions

Exception TypeCondition
System.NotSupportedException

The list is read-only.

-or-

The list has a fixed size.

See Also

IList2 Interface | IList2 Members | Foley.Utilities.Collections Namespace