摘要:
/// /// 对期刊装订库的年卷期进行组合 /// /// /// public static string QueueString(string input) { var arr = new System.Collections.ArrayList(); ... 阅读全文
摘要:
1.在集合中用Sort对集合元素进行排序 这种方法是对集合里面是纯数字情况,其中的(x,y)=>-x.CompareTo(y)是对集合中元素进行从大到小排序。但是当集合中元素是string类型的数字时候。就要用这样的方法进行排序 2. 阅读全文