当前位置:主页 > 软件编程 > .NET代码 >

asp.net 关于==?:和if()else()条件判断等效例子

时间:2022-11-11 09:44:17 | 栏目:.NET代码 | 点击:

昨天经高手指导
测试使用了
==?: 和 if()else()
xzyHe 为 DropDownlist 值,如果为空取值为0
复制代码 代码如下:

if (xzyHe ==""){int xzyHe==0;else{int xzyHe = DropDownlist.Text.Trim();}

另外一种写法:
复制代码 代码如下:

int xzyHe = ConVert.ToInt32(xzyHe == ""?0:int.Parse(DropDownlist.Text.Trim()));

您可能感兴趣的文章:

相关文章