我有一个单词列表,我想读入字符串列表。我在使用 Metro 应用程序时遇到了一些麻烦Windows Runtime
通常我会使用以下代码:
'load text file in to word list
Using sr As New StreamReader(filePath)
Do While sr.Peek <> -1
WordList.Add(sr.ReadLine.Trim)
Loop
End Using
我正在尝试使用The right way to Read & Write Files in WinRT 中的代码
Dim folder = Windows.ApplicationModel.Package.Current.InstalledLocation
folder = folder.GetFolderAsync("Data")
Dim file = folder.GetFileAsync("WordList.txt")
Dim readFile = Windows.Storage.FileIO.ReadTextAsync(file)
但是它在第二行被绊倒了,即使没有,我也不知道该怎么办。我已经杀死了Await
关键字,因为由于某种原因它看不到方法Async
上的属性GetFolder
。