根据本教程: https://msdn.microsoft.com/en-us/library/windows/apps/xaml/hh758325.aspx?f=255&MSPPError=-2147217396
我已经写了以下功能:
private async void WriteToFile()
{
StorageFolder folder =
Windows.Storage.ApplicationData.Current.LocalFolder;
StorageFile sampleFile =
await folder.CreateFileAsync("sample.txt", CreationCollisionOption.ReplaceExisting);
}
但是,如果我运行它,我会看到以下错误:
Exception thrown: 'System.ArgumentException' in mscorlib.ni.dll
Use of undefined keyword value 1 for event TaskScheduled.
为什么呢?我该如何解决这个问题?
答案 0 :(得分:0)
它给出的错误就像 "附加信息:对事件使用未定义的关键字值1 TaskScheduled" 因此,sample.txt可能无法定义为未定义的关键字。
将文件名更改为其他名称或" sample1.txt",它将起作用。
private async void WriteToFile()
{
StorageFolder folder =
Windows.Storage.ApplicationData.Current.LocalFolder;
StorageFile sampleFile =
await folder.CreateFileAsync("sample1.txt", CreationCollisionOption.ReplaceExisting);
}