ReadOnlyLinkedElementCollection<T>.Enumerator.IDisposable.Dispose Method

Releases all resources used by the current instance of the ReadOnlyLinkedElementCollection<T>.Enumerator class.

Namespace:  Microsoft.VisualStudio.Modeling
Assembly:  Microsoft.VisualStudio.Modeling.Sdk.11.0 (in Microsoft.VisualStudio.Modeling.Sdk.11.0.dll)

Syntax

'Declaration
Private Sub Dispose Implements IDisposable.Dispose
void IDisposable.Dispose()
private:
virtual void Dispose() sealed = IDisposable::Dispose
private abstract Dispose : unit -> unit  
private override Dispose : unit -> unit
JScript does not support explicit interface implementations.

Implements

IDisposable.Dispose

Remarks

Call Dispose when you are finished using the ReadOnlyLinkedElementCollection<T>.Enumerator. The Dispose method leaves the ReadOnlyLinkedElementCollection<T>.Enumerator in an unusable state. After calling Dispose, you must release all references to the ReadOnlyLinkedElementCollection<T>.Enumerator so the garbage collector can reclaim the memory that the ReadOnlyLinkedElementCollection<T>.Enumerator was occupying.

For more information, see Cleaning Up Unmanaged Resources and Implementing a Dispose Method.

Note

Always call Dispose before you release your last reference to the ReadOnlyLinkedElementCollection<T>.Enumerator. Otherwise, the resources it is using will not be freed until the garbage collector calls the ReadOnlyLinkedElementCollection<T>.Enumerator object's Finalize method.

.NET Framework Security

See Also

Reference

ReadOnlyLinkedElementCollection<T>.Enumerator Structure

Microsoft.VisualStudio.Modeling Namespace