TheString = "443,432,546,4547,4445,2,132"; //actually,about 1000 entrIEs List<int> ThelistofIDs = new List<int>(); ThelistofLeadIDs = from string s in TheString.Split(',') select Convert.ToInt32(s)).ToList<int>();
我知道我可以使用try catch来确保转换不会引发错误,但我想知道如何在linq语句中使用TryParse来完成这项工作.
谢谢.
解决方法ThelistofLeadIDs = (from string s in TheString.Split(',') let value = 0 where int.TryParse(s,out value) select value).ToList<int>();总结
以上是内存溢出为你收集整理的c# – 使用TryParse的整数列表的整数字符串全部内容,希望文章能够帮你解决c# – 使用TryParse的整数列表的整数字符串所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)