PropertyCollection::IDictionary::Clear Method ()

 

Removes all elements from the IDictionary object.

Namespace:   System.DirectoryServices
Assembly:  System.DirectoryServices (in System.DirectoryServices.dll)

private:
virtual void Clear() sealed = IDictionary::Clear

Exception Condition
NotSupportedException

The IDictionary object is read-only.

The following example demonstrates how to implement the Clear method. This example is part of a larger example provided for the IDictionary class.

public:
    virtual void Clear()
    {
        itemsInUse = 0;
    }

.NET Framework
Available since 1.1
Return to top
Show: