


[TestMethod] public void TestMethod1() { List<int> list = new List<int>(); Test(list); Console.WriteLine(list.Count()); // 总数量变为 1 } private void Test(List<int> list) { list.Add(1); }
You can find that after Test, the number of elements in the list has changed from 0 to 1.
If the variable list is assigned to another variable list2, the list will also change when list2 is operated.
This is because these variables actually point to another memory block, and changes to the number of elements and element values all change the corresponding memory block.
But when their ConvertAll method is called, the returned variable points to another memory block, which is different from the previous one.
[TestMethod] public void TestMethod1() { List<int> list = new List<int>(); Test(list); Console.WriteLine(list.Count()); // 总数量仍为 0 } private void Test(List<int> list) { List<int> list2 = new List<int>(); list2.Add(1); list = list2; }
The above code is different. This is list = list2, which actually points the list to the memory block corresponding to list2. According to the previous conclusion, the list in the parameter is the same as list2, not TestMethod1. A group of people in the list.
The following code is different, but now it actually creates two new List
[TestMethod] public void TestMethod1() { List<int> list = new List<int>(); Test(ref list); Console.WriteLine(list.Count()); // 总数量变为 1 } private void Test(ref List<int> list) { List<int> list2 = new List<int>(); list2.Add(1); list = list2; }
The same is true for arrays.
For more C# List value change demonstration and explanation related articles, please pay attention to the PHP Chinese website!

This article explores the challenges of NULL pointer dereferences in C. It argues that the problem isn't NULL itself, but its misuse. The article details best practices for preventing dereferences, including pre-dereference checks, pointer initiali

This article guides beginners on choosing a C compiler. It argues that GCC, due to its ease of use, wide availability, and extensive resources, is best for beginners. However, it also compares GCC, Clang, MSVC, and TCC, highlighting their differenc

This article explains how to create newline characters in C using the \n escape sequence within printf and puts functions. It details the functionality and provides code examples demonstrating its use for line breaks in output.

This article emphasizes the continued importance of NULL in modern C programming. Despite advancements, NULL remains crucial for explicit pointer management, preventing segmentation faults by marking the absence of a valid memory address. Best prac

This article reviews online C compilers for beginners, focusing on ease of use and debugging capabilities. OnlineGDB and Repl.it are highlighted for their user-friendly interfaces and helpful debugging tools. Other options like Programiz and Compil

This article compares online C programming platforms, highlighting differences in features like debugging tools, IDE functionality, standard compliance, and memory/execution limits. It argues that the "best" platform depends on user needs,

This article discusses efficient code copying in C IDEs. It emphasizes that copying is an IDE function, not a compiler feature, and details strategies for improved efficiency, including using IDE selection tools, code folding, search/replace, templa

This article troubleshoots missing output windows in C program compilation. It examines causes like failing to run the executable, program errors, incorrect compiler settings, background processes, and rapid program termination. Solutions involve ch


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

SublimeText3 English version
Recommended: Win version, supports code prompts!

SublimeText3 Mac version
God-level code editing software (SublimeText3)
