我的类Request
派生自Dictionary<string, string>
. 它有额外的字段。然后我有服务合同:string MakeRequest(Request request);
之后我为此合同生成服务参考。但是 VS 出于某种原因会生成下一个代码:
string MakeRequest(System.Collections.Generic.Dictionary<string, string> request);
我的问题是如何告诉 VS 我想要派生类而不是基类。
我的类Request
派生自Dictionary<string, string>
. 它有额外的字段。然后我有服务合同:string MakeRequest(Request request);
之后我为此合同生成服务参考。但是 VS 出于某种原因会生成下一个代码:
string MakeRequest(System.Collections.Generic.Dictionary<string, string> request);
我的问题是如何告诉 VS 我想要派生类而不是基类。