在C#中如何用一行代码将string转换为int?

在C#中如何用一行代码将字符串转换为可空整型(Nullable<int>,int?)?

How to write one line code to parse a string into a nullabe int in C#?


九州编程
浏览 753回答 2
2回答

慕勒3428872

目前能够想到的最少两行int temp;int? val = Int32.TryParse(parseStr, out temp) ? temp : (int?)null;期待高手一行的解决方案!

一只甜甜圈

写一个扩展方法给可以?如果可以那就是通用的一行了
打开App,查看更多内容
随时随地看视频慕课网APP