我正在编写一个关于 WinRT Metro Apps 的小应用程序。我需要读取一个 xml 文件,但我得到了一个可怕的 COMException:/
这是应该阅读这个xml:
Windows.Storage.StorageFolder storageFolder = await
Windows.ApplicationModel.Package.Current.InstalledLocation
.GetFolderAsync("Common");
Windows.Storage.StorageFile storageFile = await
storageFolder.GetFileAsync("testFile.xml");
var stream = await storageFile.OpenAsync(Windows.Storage.FileAccessMode.Read);
XmlDocument doc = await XmlDocument.LoadFromAsync(storageFile);
有人可以给我一些提示以使其工作吗?