阅读量:3
在C#中,你可以使用以下代码来创建一个字符串数组:
string[] array = new string[3]; // 创建一个长度为3的字符串数组 // 为数组的元素赋值 array[0] = "Hello"; array[1] = "World"; array[2] = "C#"; // 或者可以一次性初始化数组的元素 string[] array = new string[] { "Hello", "World", "C#" }; // 或者可以使用简化的语法 string[] array = { "Hello", "World", "C#" };
上述代码创建了一个长度为3的字符串数组,并为每个元素赋了初值。你可以根据需要修改数组的长度和元素的值。