我有3個整數a,b,c並且它們的值分別爲2,4,5 ..如何將3個數字存儲在c#中的array int[] stats = new int[3];
中如何在c#中的單個數組中獲得3個整數值?
,我要該值添加到一個串和輸出應該像
串VAL = [2,4,5];
我有3個整數a,b,c並且它們的值分別爲2,4,5 ..如何將3個數字存儲在c#中的array int[] stats = new int[3];
中如何在c#中的單個數組中獲得3個整數值?
,我要該值添加到一個串和輸出應該像
串VAL = [2,4,5];
int[] stats = {2,4,5};
或
int[] stats = new int[3];
stats[0] = a;
stats[1] = b;
stats[2] = c;
你只是說:
int[] stats = { a, b, c };
?另外,按照註釋:
var stats = new[] { a, b, c };
或
var stats = new int[] { a, b, c };
還是你的意思:
int[] stats = new int[3];
stats[0] = a;
stats[1] = b;
stats[2] = c;
?
您還可以存儲,因爲我還是用`新的[] {}`啊......但如下
stats[0] = a;
stats[1] = b;
stats[2] = c;
+1 'new']''你可以使用'var' ...有趣的。也許你可以添加第二個「方式」。 – xanatos
@xanatos:完成。 –