unity c# list 导入txt
时间: 2023-10-18 14:16:15 浏览: 80
你可以使用C#中的File类和StreamReader类来读取txt文件中的数据,并将数据存储在List中。以下是一个示例代码:
```csharp
using System.IO;
using System.Collections.Generic;
public class TxtReader
{
public List<string> ReadTxt(string filePath)
{
List<string> dataList = new List<string>();
StreamReader reader = new StreamReader(filePath);
string line;
while ((line = reader.ReadLine()) != null)
{
dataList.Add(line);
}
reader.Close();
return dataList;
}
}
```
你可以使用以上代码来读取txt文件中的数据,并将其存储在一个List<string>中。在使用时,只需要传入txt文件的路径即可,例如:
```csharp
string filePath = "Assets/Data/data.txt";
TxtReader txtReader = new TxtReader();
List<string> dataList = txtReader.ReadTxt(filePath);
```
以上代码将会读取 "Assets/Data/data.txt" 中的数据,并将其存储在一个List<string>中。
阅读全文