unity c# stringlist
时间: 2023-07-01 12:25:03 浏览: 219
C#_StringList的用法
在 Unity 中,可以使用 C# 中的 List<string> 来表示字符串列表。以下是一个简单的示例代码,展示如何创建和使用一个字符串列表:
```csharp
using System.Collections.Generic;
// 创建一个空的字符串列表
List<string> stringList = new List<string>();
// 添加字符串到列表中
stringList.Add("hello");
stringList.Add("world");
// 获取列表中的元素数量
int count = stringList.Count;
// 遍历列表并输出每个元素
foreach (string str in stringList)
{
Debug.Log(str);
}
```
需要注意的是,上述示例代码中使用了 Unity 引擎中的 Debug.Log 方法来输出字符串,如果在其他环境中使用,需要相应地修改输出方式。
阅读全文