MonoGame Windows出现An unhandled exception of type ‘System.IO.IsolatedStorage.IsolatedStorageException’ occurred in mscorlib.dll的解决办法
将MonoGame游戏移植到windows上会出现An unhandled exception of type ‘System.IO.IsolatedStorage.IsolatedStorageException’ occurred in mscorlib.dll错误。中文提示“无法确定调用方的应用程序标识。”的异常
解决办法:使用将IsolatedStorageFile.GetUserStoreForApplication()用IsolatedStorageFile.GetStore(IsolatedStorageScope.User | IsolatedStorageScope.Assembly, null, null)替换掉。