Table of Contents

TZippyReader.Dispose Method

Overloads

TZippyReader.Dispose

Releases all resources used by the TZippyReader object.

Remarks

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

Syntax

Namespace: FlexCel.Core

public void Dispose()

See also

TZippyReader.Dispose(Boolean)

See dispose pattern.

Syntax

Namespace: FlexCel.Core

protected virtual void Dispose(Boolean disposing)

Parameters

<-> Parameter Type Description
disposing Boolean If set to true this code is called from a Dispose call; if not from a finalizer.

See also