是否可以在 VB .NET 中执行一行 if 语句?如果是这样,如何?

最佳答案

使用 IF()。

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

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

也可以看看:
  • IIF becomes If, and a true ternary operator
  • Is there a conditional ternaryoperator in VB.NET?
  • Orcas introduces the IF operator - anew and improved IIF
  • The Ternary Operator in VB.NET
  • 关于vb.net - 一行如果在 VB .NET 中,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/771273/

    10-14 14:13