摘要: 创建键值列表,主要用于WCF动态传参。代码如下:/// <summary> /// 键值列表 /// </summary>#if ! SILVERLIGHT [Serializable]#endif public class StringPairList { public List<StringPair> SPList { get; set; } public StringPairList() { SPList = new List<StringPair>(); } public string this[string p_key] { get { 阅读全文
posted @ 2013-06-09 17:09 liuyunfeng 阅读(161) 评论(0) 推荐(0) 编辑