0

我在我的 WP 项目中遇到了这个错误:

An exception of type 'System.Collections.Generic.KeyNotFoundException' occurred in mscorlib.ni.dll but was not handled in user code

在这:

   AzureService.AzureServiceClient client = new AzureService.AzureServiceClient();

客户端 = 来自 WCF Web 服务的客户端。

这里发生了什么事?

4

1 回答 1

0

当操作尝试使用该集合中不存在的键从集合中检索元素时,将引发 KeyNotFoundException。

所以我认为,当您注册服务时,您在调用时遇到问题,您在注册服务和被调用服务之间设置了不匹配

于 2013-03-25T12:57:40.723 回答