WinRTMetroAppsで小さなアプリケーションを書いています。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);
誰かがそれを機能させるためのヒントを教えてもらえますか?