Share via


WindowPane.Dispose Method

Disposes the window pane and its resources.

Namespace:  Microsoft.VisualStudio.Shell
Assemblies:   Microsoft.VisualStudio.Shell.9.0 (in Microsoft.VisualStudio.Shell.9.0.dll)
  Microsoft.VisualStudio.Shell.10.0 (in Microsoft.VisualStudio.Shell.10.0.dll)
  Microsoft.VisualStudio.Shell (in Microsoft.VisualStudio.Shell.dll)

Syntax

‘선언
Public Sub Dispose
‘사용 방법
Dim instance As WindowPane

instance.Dispose()
public void Dispose()
public:
virtual void Dispose() sealed
abstract Dispose : unit -> unit 
override Dispose : unit -> unit 
public final function Dispose()

Implements

IDisposable.Dispose()

Remarks

Call Dispose() when you are finished using the WindowPane. The Dispose() method leaves the WindowPane in an unusable state. After you call Dispose(), you must release all references to the WindowPane so that the garbage collector can reclaim the memory that the WindowPane was occupying. For more information, see Cleaning Up Unmanaged Resources and Implementing a Dispose Method.

참고

Always call Dispose() before you release the last reference to the WindowPane. Otherwise, the resources it is using may not be freed until the garbage collector calls the Finalize method of the WindowPane object.

.NET Framework Security

See Also

Reference

WindowPane Class

WindowPane Members

Dispose Overload

Microsoft.VisualStudio.Shell Namespace