我将应用程序添加到Windows商店。当我下载并运行应用程序时,一切顺利,但当有人下载并运行应用程序时,抛出异常。
Třídoneízaregistrována==未注册的课程
有代码:
try
{
StoreContext storeContext = Windows.Services.Store.StoreContext.GetDefault();
string[] productKinds = {"Durable", "Consumable", "UnmanagedConsumable" };
List<String> filterList = new List<string>(productKinds);
queryResult = await storeContext.GetAssociatedStoreProductsAsync(filterList);
}
catch (Exception ex)
{
MessageDialog(ex, "UpdateDatabaze");
}
任何知道如何解决此异常的人?
答案 0 :(得分:0)
我正在使用目标版本Windows周年纪念版(构建版本14393)编写应用程序,它支持StoreContext类。当用户下载应用程序并且他们的Windows不是周年纪念日但只有构建10586或最低构建版本的Windows 10时,则抛出异常,这在所谓的问题部分中描述。