unity将三个字符串数组添加至一个字符串数组中
时间: 2024-05-03 09:22:49 浏览: 190
Unity3D中任意类型数据转换成json数据的方法2
可以使用Concat方法将三个字符串数组添加至一个字符串数组中。
示例代码如下:
```
string[] arr1 = {"hello", "world"};
string[] arr2 = {"good", "morning"};
string[] arr3 = {"nice", "to", "meet", "you"};
string[] result = arr1.Concat(arr2).Concat(arr3).ToArray();
foreach (string str in result)
{
Console.WriteLine(str);
}
```
输出结果为:
```
hello
world
good
morning
nice
to
meet
you
```
阅读全文