c# – 使用TryParse的整数列表的整数字符串

c# – 使用TryParse的整数列表的整数字符串,第1张

概述我有这段代码: 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(',') 我有这段代码:
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的整数列表的整数字符串所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1238953.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-06
下一篇 2022-06-06

发表评论

登录后才能评论

评论列表(0条)

保存