调试器总是在Windows 8商店应用程序(metro风格)中调用GetFileAsync时中断

时间:2012-09-13 07:01:53

标签: windows microsoft-metro

当代码运行到

时,这个问题让我困惑了好几天
await ApplicationData.Current.LocalFolder.GetFileAsync(udFileName);

该应用程序总是跳转到

UnhandledException += (sender, e) =>
        {
            if (global::System.Diagnostics.Debugger.IsAttached) global::System.Diagnostics.Debugger.Break();
        };

例外情况是:

{Windows.UI.Xaml.UnhandledExceptionEventArgs}
Exception   {"Object reference not set to an instance of an object."}   
System.Exception {System.NullReferenceException}
Message "System.NullReferenceException.......

以下是我调用的函数:

public async void RestoreUserDefaults()
    {
        string udFileName = "userdefaults.udef";
        bool bExist = true;
        {
            try
            {
                await ApplicationData.Current.LocalFolder.GetFileAsync(udFileName);
            }
            catch (FileNotFoundException)
            {
                bExist = false;
            }
        }
    }

我已将文件类型添加到package.appxmanifest。

任何人都可以帮助我,非常感谢.....

0 个答案:

没有答案