摘要: private int[] GetIntArrayFromStr(string historyLeaderId) { var strArray= !string.IsNullOrEmpty(historyLeaderId) && historyLeaderId.Contains(",") ? historyLeaderId.Split(',') : new string[2] {"0", "0"}; return Array.ConvertAll<string, int>(strArray, 阅读全文
posted @ 2012-12-10 16:01 海之澜 阅读(505) 评论(0) 推荐(0) 编辑