Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 916517
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T18:03:59+00:00 2026-05-15T18:03:59+00:00

Is it really better not to use finalize compare to dispose ? Does dispose

  • 0

Is it really better not to use finalize compare to dispose ? Does dispose remove unmanaged resource in first parse ?

What is suppressing finalize ?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-15T18:03:59+00:00Added an answer on May 15, 2026 at 6:03 pm

    Your implementation of IDisposable should be:

    public MyClass : IDisposable
    {
         public void Dispose() 
         {
             Dispose(true);
             GC.SuppressFinalize(this);
         }
    
         protected Dispose(bool disposing) 
         {
             if( disposing )
             {
                 // release unmanaged resource
             }
             // release managed resources
         }
    
         ~MyClass() 
         {
             Dispose(false);
         }
    }
    

    If an object has a finalizer the CLR keeps a reference to it in the finalization queue. If you dispose manually the object (calling Dispose()) you already remove the unmanaged resources (as the implementation of dispose and the finalizer is shared), so there is no need to call the finalizer and you can safely remove the object from the finalization queue (calling GC.SuppressFinalize(this)).

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am not really sure what this method does, or better I am not
I really like Xml for saving data, but when does sqlite/database become the better
Why is it considered better practice to use enum not static const bool in
When should we really use finalize() method in java? If we want to close
I really wish that Google was better at searching for syntax: decades :: (RealFrac
I am really trying to be a better programmer, and to make more modular,
It doesn't really have to add newlines, just something readable. Anything better than this?
Is there any reason to not use Time Machine over Subversion (on Mac)? I've
Okay. I'm NOT asking which one is better. I know Yii is not better
I'm using eclipse for a few months, I realy like gvim better but eclipse

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.