ResourceReader.Dispose Method

Definition

Releases all resources used by the current instance of the ResourceReader class.

public:
 virtual void Dispose();
public void Dispose ();
abstract member Dispose : unit -> unit
override this.Dispose : unit -> unit
Public Sub Dispose ()

Implements

Remarks

When you are finished using this instance of ResourceReader, call Dispose to release all resources used by this instance. You should eliminate further references to this ResourceReader instance so that the garbage collector can reclaim the memory of the instance instead of keeping it alive for finalization.

Dispose calls the private Dispose(Boolean) method, which contains the code to release managed and unmanaged resources. For more information, see Implementing a Dispose Method.

Applies to