OrderedDictionary.Clear Method ()

 

Removes all elements from the OrderedDictionary collection.

Namespace:   System.Collections.Specialized
Assembly:  System (in System.dll)

abstract Clear : unit -> unit
override Clear : unit -> unit

Exception Condition
NotSupportedException

The OrderedDictionary collection is read-only.

After calling the Clear method, the Count property is set to zero and references to other objects from elements of the collection are also released. The capacity is not changed as a result of calling this method.

The following code example demonstrates the modification of an OrderedDictionary collection. In this example, the Clear method is used to empty the OrderedDictionary, and then the OrderedDictionary is repopulated. This code is part of a larger code example that can be viewed at OrderedDictionary.

No code example is currently available or this language may not be supported.

Universal Windows Platform
Available since 10
.NET Framework
Available since 2.0
Return to top
Show: