为了账号安全,请及时绑定邮箱和手机立即绑定

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

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

C#
qq_遁去的一_1 2018-07-30 07:10:29
在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;

查看完整回答
反对 回复 2018-08-23
  • 1 回答
  • 0 关注
  • 533 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信