引用类型常量初始化和数组连接

时间:2010-07-18 00:07:20

标签: c# .net const

1)const int[] array={1,2,3,4}; //this gives below error

"Error 1 'ConsoleApplication1.Main.array' is of type 'int[]'.
 A const field of a reference type other than string can only be initialized with null"

在我看来,根据错误messeagge,使用const作为引用类型是没有意义的。我错了吗?

2)我如何连接int数组?例如:

int[] x={1,2,3} + {4,5,6};

我知道+运算符不起作用,所以最好的方法是将它作为字符串吗?

2 个答案:

答案 0 :(得分:2)

Concat扩展方法可以做到这一点。不是高清晰度代码,但确实如此。

(new int[] { 1, 2, 3, 4 }).Concat(new int[] { 5, 6, 7, 8 }).ToArray();

答案 1 :(得分:2)

1)是的,唯一有用的常量是String。

2)要连接数组,您需要创建一个新数组并将数组的内容复制到它:

int[] a = { 1, 2, 3 };
int[] b = { 4, 5, 6 };

int[] x = new int[a.Length + b.Length];
a.CopyTo(x, 0);
b.CopyTo(x, a.Length);

我不知道你认为什么是“最好”的方法,但这是最有效的。 (快速测试表明,这比使用Concat扩展方法快10-20倍。)