我是具有 python 背景的 c# 新手。
在python中,我可以这样做:
a = [1, 5, 10] #initialize
a = [1, 3, 5] #change the value
我如何a = {1, 3, 5}
在 c# 上执行?目前我找到了这种方式。
int[] a = {1, 5, 10}; //initialize
int[] b = {1 ,3, 5}; //create new reference type
a = (int[])b.Clone(); //change the value
有没有更好的方法将整个数组a
从更改{1, 5, 10}
为{1 ,3, 5}
?
即a = [1, 3, 5]
在 python 到 C# 上?