初めてテキストファイルを読むことができます。次に同じテキスト ファイルを読み込もうとすると、関数が終了し、null 値が返されます。
static string configData = "";
async public void readtextFile(string folder, string file)
{
StorageFolder storageFolder = await Package.Current.InstalledLocation.GetFolderAsync(folder);
StorageFile storageFile = await storageFolder.GetFileAsync(file);
configData = await FileIO.ReadTextAsync(storageFile);
}
この問題を解決する方法を教えてください..
ありがとうございます