我是.Net开发的新手。在 UWP 应用程序中,我需要检查商店中的包更新。我已按照本教程进行操作。对于下面的代码,我得到了异常。
StoreContext context = StoreContext.GetDefault();
// Get the updates that are available.
IReadOnlyList<StorePackageUpdate> updates =
await context.GetAppAndOptionalStorePackageUpdatesAsync();
抛出异常:System.Private.CoreLib.dll 中的“System.IO.FileNotFoundException” System.Private.CoreLib.dll 中出现“System.IO.FileNotFoundException”类型的异常,但未在用户代码中处理系统找不到指定的文件。(来自 HRESULT 的异常:0x80070002)
我找不到任何提示为什么我会收到此异常。请帮助我解决此异常以及如何解决此问题。