vb.net – 一行如果在VB .NET

前端之家收集整理的这篇文章主要介绍了vb.net – 一行如果在VB .NET前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
是否可以在VB .NET中执行一行if语句?如果是,如何?
使用IF()。

它是一个短路三元运算符。

Dim Result = IF(expression,<true return>,<false return>)

也可以看看:

> IIF becomes If,and a true ternary operator
> Is there a conditional ternary
operator in VB.NET?

> Orcas introduces the IF operator – a
new and improved IIF

> The Ternary Operator in VB.NET

原文链接:https://www.f2er.com/vb/256440.html

猜你在找的VB相关文章