NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

IList.Add

When implemented by a class, adds an item to the IList.

[Visual Basic]
Function Add( _
   ByVal value As Object _
) As Integer
[C#]
int Add(
   object value
);
[C++]
int Add(
   Object* value
) = 0;
[JScript]
function Add(
   value : Object
) : int;

Parameters

value
The Object to add to the IList.

Return Value

The position into which the new element was inserted.

See Also

IList Interface | IList Members | System.Collections Namespace