0

我有一个返回 Dictionary 对象的 WCF 服务。我创建了一个 ASP .NET Web 应用程序并添加了一个 Web 表单来测试该服务。我在 Web 应用程序中添加了我的 WCF 服务引用。现在,在以 Web 形式编写 Button1_Click 的代码时,我无法访问我的服务返回的 Dictionary 对象。代码如下所示: 请尽快提出解决方案。谢谢。

`using System;    
using System.Collections.Generic;    
using System.Linq;  
using System.Web;  
using System.Web.UI;  
using System.Web.UI.WebControls;  
using WebApplication1.wsHashOps;  

namespace WebApplication1  
{   
    public partial class WebForm1 : System.Web.UI.Page   
    {   
        protected void Page_Load(object sender, EventArgs e)   
        {

      }

        protected void Button1_Click(object sender, EventArgs e)  
        {
            string input = TextBox1.Text;
            Service1 client = new Service1();
            string data = "";



            Dictionary<int, string> hh = client.getWsHashOperations(input);

            string input = TextBox1.Text;    
            Service1 client = new Service1();    
            string data = "";    
            Dictionary<int, string> hh = client.getWsHashOperations(input);        
}        
}        
} 
4

1 回答 1

0
    KeyValuePair<int,string>[] hh = client.getWsHashOperations(input);

    string input = TextBox1.Text;    
    Service1 client = new Service1();    
    string data = "";    
    KeyValuePair<int,string>[] hh2 = client.getWsHashOperations(input);

您不能声明两个具有相同名称的变量。重命名其中之一。此外,看起来它会根据您的错误消息解析为 KeyValuePair 数组。试试上面的

在这些情况下,您也可以使用 var 关键字

var hh = client.getWsHashOperations(input); 

这将为您隐式解析数据类型,同时仍保持类型安全

于 2013-10-20T05:15:34.977 回答