我有一个 WCF 服务,它应该返回一个字符串数组列表:
[OperationContract]
List<string[]> ArticleSearch(int SearchField, string SearchValueMin,
string SearchValueMax, IEnumerable<string> Fields);
我知道我可以将列表的反序列化从System.Array
to更改,System.Collections.Generic.List
但这对我来说没用,因为我得到string[][]
(jagged array) 或List<List<string>>
(List of List of string) 作为返回类型。我需要List<string[]>
。
我的问题是;是否可以在某处进行配置,或者我是否必须Reference.cs
在每次更新后手动更改文件?