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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T13:09:04+00:00 2026-05-15T13:09:04+00:00

What exactly happens when adding an object to a collection such as List? List<Person>

  • 0

What exactly happens when adding an object to a collection such as List?

List<Person> people = new List<Person>();
Person dan = new Person() { Name="daniel", Age=10 };
people.Add(dan);
dan = new Person() { Name = "hw", Age = 44 };

When I execute the above code, the List<Person> peopledoes not get affected by final line.
So I am assuming that the list copies the references of the added object, so when change the reference, the list does not get affected. am I correct?

  • 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-15T13:09:04+00:00Added an answer on May 15, 2026 at 1:09 pm

    Well, the code you’ve shown doesn’t actually add anything to the list at all. I assume you meant to have:

    people.Add(dan);
    

    in there somewhere?

    But yes, the List<T> contains references to objects. It doesn’t know about where the references have come from. It’s worth being clear about the difference between a variable and its value. When you call:

    people.Add(dan);
    

    that copies the value of the argument expression (dan) in this case as the initial value of the parameter within List<T>.Add. That value is just a reference – it has no association with the dan variable, other than it happened to be the value of the variable at the time when List<T>.Add was called.

    It’s exactly the same as the following situation:

    Person p1 = new Person { Name = "Jon" };
    p2 = p1;
    p1 = new Person { Name = "Dan" };
    

    Here, the value of p2 will still be a reference to the person with the name “Jon” – the second line just copies the value of p1 to p2 rather than associating the two variables together. Once you understand this, you can apply the same logic to method arguments.

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

Sidebar

Related Questions

Can someone tell me what exactly happens when I right click a function name
What exactly happens when you create a new instance using : Base b =
What exactly happens, in terms of memory, when i declare something like: char arr[4];
I have the following issue and I would like to know what exactly happens.
I hope this is programming-related enough. What exactly happens during the shutdown process of
What happens exactly when I launch a .NET exe? I know that C# is
Does anyone know exactly what happens when you change your Zend site at, say,
I have a problem either adding to or traversing a linked list. The main
What exactly happens when i perform casting on reference types and values types and
Can anyone tell me what exactly happens in a Recursion Program.. ??

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.