首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >Windows 8.1 UNHANDLED_EXCEPTION

Windows 8.1 UNHANDLED_EXCEPTION
EN

Stack Overflow用户
提问于 2015-09-09 12:40:29
回答 1查看 177关注 0票数 1
代码语言:javascript
复制
 List<Person> friends = new List<Person>();
            StorageCredentials credential = new StorageCredentials(x, x);
            // Retrieve storage account from connection string.
            CloudStorageAccount storageAccount = new CloudStorageAccount(credential, true);
            // Create the blob client.
            CloudBlobClient blobClient = storageAccount.CreateCloudBlobClient();
            // Retrieve reference to a previously created container.
            CloudBlobContainer container = blobClient.GetContainerReference("cryptochat");

当在"CloudBlobClient blobClient =storageAccount.CreateCloudBlobClient()“中创建blob客户机时,应用程序中断并在这里输入:

代码语言:javascript
复制
 #if DEBUG && !DISABLE_XAML_GENERATED_BREAK_ON_UNHANDLED_EXCEPTION
            UnhandledException += (sender, e) =>
            {
                if (global::System.Diagnostics.Debugger.IsAttached) global::System.Diagnostics.Debugger.Break();
            };
#endif

例外是:{"The argument 'ParallelOperationThreadCount' is larger than maximum of '64'\r\nParameter name: ParallelOperationThreadCount"},这段代码在visual 2013中工作,然后我重新安装了windows 10并安装了2015年,现在它不工作了。这段代码在模拟器上工作,但在设备上不起作用。

EN

回答 1

Stack Overflow用户

回答已采纳

发布于 2015-09-09 13:19:36

似乎有一个错误,尝试更新您的azure

票数 1
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/32479830

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档