在C#中如何用一行代码将字符串转换为可空整型(Nullable<int>,int?)?How to write one line code to parse a string into a nullabe int in C#?
1 回答
幕布斯7119047
TA贡献1794条经验 获得超8个赞
int temp;
int? val = Int32.TryParse(parseStr, out temp) ? temp : (int?)null;
- 1 回答
- 0 关注
- 533 浏览
添加回答
举报
0/150
提交
取消