ArrangedElementCollection::GetEnumerator Method ()
.NET Framework (current version)
Returns an enumerator for the entire collection.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
Implements
IEnumerable::GetEnumerator()Typically the enumerator does not have exclusive access to the collection; therefore, enumerating through a collection is intrinsically not a thread-safe procedure. Even when a collection is synchronized, other threads could still modify the collection, which causes the enumerator to throw an exception. To guarantee thread safety during enumeration, you can follow one of the following strategies:
Lock the collection during the entire enumeration using a Monitor.
Catch and handle the exceptions that result from changes made by other threads.
.NET Framework
Available since 2.0
Available since 2.0
Show: