当前位置:Gxlcms > asp.net > asp.net 关于==?:和if()else()条件判断等效例子

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

时间:2021-07-01 10:21:17 帮助过:25人阅读

昨天经高手指导
测试使用了
==?: 和 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()));

人气教程排行