Edit

Share via


NativeObject.Dispose Method

Definition

Overloads

Dispose()

Releases all resources used by this NativeObject.

Dispose(Boolean)

Releases the unmanaged resources used by the NativeObject and optionally releases the managed resources.

Dispose()

Releases all resources used by this NativeObject.

public void Dispose();

Implements

Remarks

Always dispose the object before you release your last reference to the NativeObject. Otherwise, the resources it is using will not be freed until the garbage collector calls the finalizer.

Applies to

Dispose(Boolean)

Releases the unmanaged resources used by the NativeObject and optionally releases the managed resources.

protected virtual void Dispose(bool disposing);

Parameters

disposing
Boolean

true to release both managed and unmanaged resources; false to release only unmanaged resources.

Remarks

Always dispose the object before you release your last reference to the NativeObject. Otherwise, the resources it is using will not be freed until the garbage collector calls the finalizer.

Applies to