KeyNotFoundException: The given key was not present in the dictionary. System.Collections.Generic.Dictionary`2[Managers.NpcQuestStatus,System.Collections.Generic.List`1[Models.Quest]].get_Item (NpcQuestStatus key) (at /Users/builduser/buildslave/mono/build/mcs/class/corlib/System.Collections.Generic/Dictionary.cs:150) Managers.QuestManager.GetQuestStatusByNpc (Int32 npcId) (at Assets/Scripts/Managers/QuestManager.cs:152) NPCContoller.RefreshNpcStatus () (at Assets/Scripts/GameObject/NPCContoller.cs:35) NPCContoller.Start () (at Assets/Scripts/GameObject/NPCContoller.cs:25)
时间: 2023-12-27 08:02:11 浏览: 977
C# 链接mysql数据库 出现 给定关键字不在字典中
5星 · 资源好评率100%
根据你提供的信息,这是一个 C# 的异常信息,指出给定的键在字典中不存在。具体来说,是在 QuestManager.cs 的 GetQuestStatusByNpc 方法中尝试获取一个不存在的键导致的异常。建议检查代码中是否正确地设置了字典的键值对,或者在代码中添加相应的键值对。同时,也可以在调用 GetQuestStatusByNpc 方法之前检查对应的键是否存在,避免类似的异常发生。
阅读全文