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!

SortedList.Remove

Removes the element with the specified key from SortedList.

[Visual Basic]
Overridable Public Sub Remove( _
   ByVal key As Object _
)
[C#]
public virtual void Remove(
   object key
);
[C++]
public: virtual void Remove(
   Object* key
);
[JScript]
public function Remove(
   key : Object
);

Parameters

key
The key of the element to remove.

Return Value

None.

Exceptions

Exception Type Condition
ArgumentNullException key is a null reference (in Visual Basic Nothing).

Remarks

This method can be overridden by a derived class.

See Also

SortedList Class | SortedList Members | System.Collections Namespace