C#UWP文本文件到字符串列表

时间:2017-06-12 18:26:29

标签: list uwp text-files windowsiot

我为我的树莓创建了一个UWP应用程序(最新的Windows IoT)。

我试图从名为Words的地图下的项目文件夹中的.txtfile获取字符串列表。

到目前为止,这是我的代码。

public async void GenereerGokWoord(int character)
{
    StorageFile file = await StorageFile.GetFileFromApplicationUriAsync(
                               new Uri("ms-appx:///Words//5-letterwoorden.txt")
                             );
    }

通过在}末尾设置断点,我可以确认此代码可以找到.txt文件。

但是现在我不知道如何从这一点获得字符串列表。

.txt文件看起来像

  

字1

     

字2

     

字3

1 个答案:

答案 0 :(得分:1)

如果您希望将文件内容作为列表,并将每行作为项目,请使用FileIO.ReadLinesAsync()

IList<string> data = await FileIO.ReadLinesAsync(file);
List<string> finallist = data.ToList();

你的finallist应该包含所有单词List。