C # destructor

Source: Internet
Author: User
Using System;
Using System. Collections. Generic;
Using System. Linq;
Using System. Text;

Namespace ConsoleApplication1
{
// Public class MyTest: IDisposable
//{
// # Region IDisposable Member
// Public MyTest ()
//{

//}

// Public void Dispose ()
//{
// Console. WriteLine ("IDisposable ");
//}

// # Endregion
//}

// Class Program
//{
// Static void Main (string [] args)
//{
// MyTest temp = null;
// Try
//{
// Temp = new MyTest ();
// Console. WriteLine ("Try ");
//// Do your processing;
//}
// Finally
//{
// If (temp! = Null) temp. Dispose ();
//}
/// Using (MyTest temp = new MyTest (); // This sentence can be replaced by Try.
//}
//}
Public class ResourceHolder: IDisposable
{
Private bool isDispose = false;

# Region IDisposable Member

Public void Dispose ()
{
Dispose (true );
GC. SuppressFinalize (this );
}

# Endregion
Protected virtual void Dispose (bool disposing) // a derived class can access
{
If (! IsDispose)
{
If (disposing)
{
// Cleanup managed object by calling the their Disposing method;
}
// Cleanup unmanaged objects;
}
IsDispose = true;
}

~ ResourceHolder ()//
{
Dispose (false );
}

Public void SomeMethod ()
{
// Ensure object not already disposed before exception of any method
If (isDispose)
{
Throw new ObjectDisposedException ("ResourceHolder ");

}
// Method implementation...
}
}

Public class MainRun
{
Static void Main ()
{
ResourceHolder temp = new ResourceHolder ();

}
}
}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.