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.12.0 (in Microsoft.VisualStudio.Modeling.Sdk.12.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
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
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.