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 7700005
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T22:36:26+00:00 2026-05-31T22:36:26+00:00

I am curious to know that could it be possible that in the below

  • 0

I am curious to know that could it be possible that in the below code static Instance is not null but the MYDB class reference gets disposed by GAC and set to null ?

public class DA_Setting
{
    private static readonly DA_Setting instance = new DA_Setting();

    public static DA_Setting Instance
    {
        get { return instance; }
    }

    db MYDB = new db();

    // Some other methods here

    private void Getname()
    {
        MYDB.GetNames(); // Sometimes this line throws null reference error on LIVE server.
    }
}
  • 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-31T22:36:27+00:00Added an answer on May 31, 2026 at 10:36 pm

    The GC will never, ever set something to null . Period.

    If you have a reference to an object, the GC is designed to see that you’re still using the object, holding onto it by that reference, and therefore won’t collect it until you’re done with it.

    The only way for the MYDB field to be null is if you fail to assign a value to it (and I can see you have an initializer in your code that prevents that scenario), or if you assign a value of null to the field at some later point in your code.

    I would suggest you turn MYDB into a get-only property and initialize it in your class constructor:

    private DA_Setting()
    {
        this.MYDB = new db();
    }
    
    public db MYDB { get; private set; }
    

    This ensures you can’t set this value from outside your class and should give you a much more predictable type to work with.

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

Sidebar

Related Questions

I am curious about COM+, DCOM. I know that MSFT does not encourage you
I don't know if this is possible/sensible, but I was curious to know if
I am curious to know why this is happening. Please read the code example
I know that I could do a simple prototypal inheritance in JavaScript like this:
I understand that this is a very broad question, but I was very curious
I'm curious to know what happens when compiling code with a dynamic cast whith
I know this might be a long shot, but I am hoping that this
I came across the problem of not having an editor kit that could not
Curious to know how people set up their personal and/or work development environment, in
I curious to know how the jQuery.load functionality affects page load speeds when reporting

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.