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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T19:27:13+00:00 2026-05-20T19:27:13+00:00

I just don’t know that where the variable used in some method has gone

  • 0

I just don’t know that where the variable used in some method has gone after the method’s execution completed, please see the code snippet below:

    void Foo()
    {
        List<object> conditionedObjList;
        conditionedObjList = GetConditionedObjectList
            (
            new List<object>() { /*there are many unconditioned objects here*/}
            );
    }

My question; is the variable myObjList defined in method GetConditionedObjectList will be disposed after myObjList has returned or we need to dispose it manually?

    private List<object> GetConditionedObjectList(List<object> originalObjList)
    {
        List<object> myObjList = new List<object>();
        /*do some selection*/
        myObjList.AddRange(new object[]{/*there are 100 conditioned objects here*/});
        return myObjList;
    }
  • 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-20T19:27:13+00:00Added an answer on May 20, 2026 at 7:27 pm

    C# has garbage collection. Objects are created on the heap, and are only collected when the object has no more references to it.

    myObjList just stores a reference to the actual object which is on the heap; when you return this reference and store it in a variable, you’re guaranteeing that the garbage collector (GC) won’t pick it up.

    If by “disposed” you mean “destroyed” or “removed from memory”, then the garbage collector does this for you; all you need to do is remove references to the object. For example, you could set conditionedObjList to null after calling the function. Then the GC would be free to pick the unreferenced object up. Note that this isn’t immediate; the GC only runs periodically in order to be more efficient.

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

Sidebar

Related Questions

I don't know if anyone has seen this issue before but I'm just stumped.
I just don't know. I mean, there are a few topics that point me
Maybe I just don't know .NET well enough yet, but I have yet to
I'm beginning to fall in love with Extension Methods, but I just don't know
I keep reading about people who are test infected, meaning that they don't just
I don't want to know how... Just how complicated.... I'm thinking of securing a
I don't care what the differences are. I just want to know whether the
I just don't understand how this is done. I've gone through several questions here
i think its an regular problem, answered several times, but I just don't know
<div id=divItems><div id=divItemsContent></div></div> I think i know what the problem is, just don't know

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.