摘要:
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, 阅读全文