Release the General paradigm of resources-a sharper C # code note,

Source: Internet
Author: User

Release the General paradigm of resources-a sharper C # code note,

Public class Photo: IDisposable {// call the internal Dispose method in the Finalize Function ~ Photo () {// only the managed resources are released when the resources are automatically recycled, and Dispose (false) is not released );} // provides the named public void Close () method for releasing resources {// all resources are released when explicit recycling (true );} # The region IDisposable interface implements the IDisposable interface explicitly // to avoid both the Dispose method and the custom naming method (Close) public void IDisposable. dispose () {// release all resources Dispose (true); // avoid repeated calls to the Finalize function GC. suppressFinalize (this) ;}# endregion // The internal Dispose method to truly implement resource release. protected virtual void Dispose (bool disposing) {if (disposing = true) {// release managed resources} // release unmanaged resources }}

 

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.