我正在使用C#。
我试图在我的.asmx文件中创建一个Web方法,如下所示:
[WebMethod]
public string MyWebMethod(Dictionary<string, string> parameters)
{
//...
}
我得到以下例外:
The type System.Collections.Generic.Dictionary`2[[System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]] is not supported because it implements IDictionary.
我该如何解决?
感谢。
答案 0 :(得分:1)