Is it possible to do one line if statement in VB .NET? If so, how?
|
|
Use IF().
SEE ALSO: |
|||
|
|
|
|
At the risk of causing some cringing by purests and c# programmers, you can use multiple statements and else in a one-line if statement in VB. In this example, y ends up 3 and not 7.
|
||
|
|
|
Be careful with the IIf opertor though - it is not always short-circuited and both the true and false expressions are evaluated. |
||
|
|
|
|
You can use the IIf function too:
|
||
|
|
|
|
Or
|
||
|
|
|
It's actually pretty simple..
|
||||
|
|
|
Just add
or:
|
||
|
|
