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

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

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


qq_遁去的一_1
浏览 534回答 1
1回答

幕布斯7119047

int temp;int? val = Int32.TryParse(parseStr, out temp) ? temp : (int?)null;
打开App,查看更多内容
随时随地看视频慕课网APP