gpt4 book ai didi

windows-phone-7 - 应用程序崩溃。关键异常?

转载 作者:行者123 更新时间:2023-12-01 09:35:29 24 4
gpt4 key购买 nike

我从我的应用程序中收到崩溃报告。我真的不明白问题是什么。它从来没有和我一起崩溃......可能是什么问题?来自应用中心错误消息:

0 coredll.dll xxx_RaiseException 19<br/>
1 mscoree3_7.dll 436488<br/>
2 mscoree3_7.dll 386545<br/>
3 mscoree3_7.dll 540936<br/>
4 TransitionStub 0<br/>
5 System.ThrowHelper.ThrowKeyNotFoundException 52<br/>
6 System.Collections.Generic.Dictionary 2.get_Item 136<br/>
7 System.IO.IsolatedStorage.IsolatedStorageSettings.get_Item 80<br/>
8 ScheduledTaskAgent1.ScheduledAgent.OnInvoke 660<br/>
9 Microsoft.Phone.Scheduler.ScheduledTaskAgent.Invoke 856<br/>
10 .AgentRequest.Invoke 764<br/>
11 Microsoft.Phone.BackgroundAgentDispatcher.InvocationThread 196<br/>
12 System.Threading.ThreadHelper.ThreadStartHelper 132<br/>
13 System.Threading.ThreadHelper.ThreadStart_Context 80<br/>
14 System.Threading.ExecutionContext.Run 324<br/>
15 System.Threading.ThreadHelper.ThreadStartHelper 168<br/>
16 mscoree3_7.dll 429164<br/>
17 mscoree3_7.dll 310125<br/>
18 mscoree3_7.dll 310319<br/>
19 mscoree3_7.dll 305995"

最佳答案

看起来 BackgroundAgent 正在尝试从 IsolatedStorageSettings.ApplicationSettings 加载不存在的项目。检查您的 ScheduledTaskAgent1.ScheduledAgent.OnInvoke 方法。

1/取回前先使用“IsolaatedStorageSettings.ApplicationSettings.Contains”方法检查key是否存在

2/如果 key 不存在,则采取相应措施

例如,如果你正在做:

somevalue = IsolatedStorageSettings.ApplicationSettings["setting"];

那么“设置”也是错误消息所指的关键。将您的代码替换为:

if (IsolatedStorageSettings.ApplicationSettings.Contains("setting"))
{
somevalue = IsolatedStorageSettings.ApplicationSettings["setting"];
}else
{
// set somevalue to its default value
}

关于windows-phone-7 - 应用程序崩溃。关键异常?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8896066/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com