Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个预定义长度为 2 的数组。
private int[] numbers = new int[2];
现在,我想编写一个方法来创建一个数组,该数组的大小是当前状态的两倍,并将所有数据复制到其中。然后它将数组引用分配给这个新的。关于我应该如何开始使用该方法的任何想法?
您不需要自己执行此操作 - 它已经存在于Array.Resize:
Array.Resize
Array.Resize(ref numbers, numbers.Length * 2);