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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T15:22:06+00:00 2026-05-23T15:22:06+00:00

What is the diference between those two examples of code? public Test(int x) {

  • 0

What is the diference between those two examples of code?

  public Test(int x)
  {
        List<int> list= new List<int>();
        List<int> list1 = new List<int>();

        list= CreateList(x);
        list1 = CreateList(x + 1);

        DoStuff(list, list1);

        list.Clear();
        list = null;
        list1.Clear();
        list1 = null;
    } 

Is this the way to code?

    public Test(int nCount)
    {
        var list = CreateList(nCount);
        var list1 = CreateList(nCount + 1);

        DoStuff(list, list1);
    }
  • 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-23T15:22:07+00:00Added an answer on May 23, 2026 at 3:22 pm

    Nothing.

    For readability and therefore future maintenance reasons, use the second one. It’s clearly much easier to understand, and because of the design of C# and the CLR, much of the code in your first example is not required.

    I’ll try to explain what I mean. You don’t need to clear or set to null any references to local variables (the garbage collector will do this for you). You only need to do this for class-level fields, and often not even then (again, the garbage collector will collect them when your class goes out of scope).

    Consider focussing more on the concept of objects being disposable, and don’t worry about the memory usage/garbage collection aspects. Emptying a list or setting the reference to the list to null doesn’t actually reclaim memory; the memory is still allocated until the garbage collector reclaims it at some indeterminate time in the future.

    There are means to force a garbage collection, but typically that means you’re doing something wrong if you need to go that far. Some would say if you need to worry about memory in so much detail, .NET may not be the correct choice of language for your problem domain.

    Also, using var or specifying the type explicitly makes no difference whatsoever.

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

Sidebar

Related Questions

Is there any substantial difference between those two terms?. I understand that JDK stands
What is the difference between those two AJAX calls and why would I choose
I am trying to understand difference between those two and really need a explanatory
What is the difference between these two pieces of code type IInterface1 = interface
What is difference between these two examples: if(firstchek) { if(second) { return here(); }
Given the following two interfaces (these are small examples, not my actual implementation): public
Can someone please explain the difference between these two examples in the context of
What is actually the difference between these two casts? SomeClass sc = (SomeClass)SomeObject; SomeClass
1)Is there any difference between these two keywords for the elements of collections??( Copy
Can someone explain the difference between these two, the first one is taken from

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.