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

  • Home
  • SEARCH
  • 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 3496874
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T12:18:09+00:00 2026-05-18T12:18:09+00:00

If a class has a property which contains unmanaged resources. How to make sure

  • 0

If a class has a property which contains unmanaged resources. How to make sure no memory leak when using the class

Class A
{
         B {get; set;}
}

B contains unmanaged resources.

  • 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-18T12:18:10+00:00Added an answer on May 18, 2026 at 12:18 pm

    Implement IDisposable and clean up your unmanaged resources by calling Dispose(), preferably placing the call to Dispose in a finally statement so you clean up resources even in the case of an exception.

    C# has a using keyword that you can employ to make sure that the Dispose method is called, even if an exception is thrown.

    EDIT: Incorporated call to GC.SuppressFinalize and finalizer implementation per Ran’s answer

    class A : IDisposable
    {
        private bool _disposed;
    
        ~A()
        {
            this.Dispose(false);
        }
    
        public void Dispose()
        {
            this.Dispose(true);
            GC.SuppressFinalize(this);
        }
    
        protected virtual void Dispose(bool disposing)
        {
            if (!_disposed)
            {
                if (disposing)
                {
                    // dispose managed resources
                }
    
                // clean up unmanaged resources
    
                _disposed = true;
            }
        }
    }
    
    class Program
    {
        static void Main(string[] args)
        {
            using (var someInstance = new A())
            {
                // do some things with the class.
                // once the using block completes, Dispose
                // someInstance.Dispose() will automatically
                // be called
            }
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a class which represents a shape. The Shape class has a property
I have an class which has a enum property and a boolean property, based
I have a component which has a List<T> property. The class in the list
I have a generic List<MyClass> where MyClass has a property InvoiceNumber which contains values
A class has a property (and instance var) of type NSMutableArray with synthesized accessors
I have an entity class that has a property with an underlying db column
I have a Rotation class, which contains references to multiple lists of Advert objects.
Some class has ugly field called URL, but Id rather call it file. public
FxCop has the CollectionPropertiesShouldBeReadOnly rule that complains if your class has some kind of
I'm wanting to test that a class has an EventHandler assigned to an event.

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.