vote up 0 vote down star

Is it possible to do one line if statement in VB .NET? If so, how?

flag

7 Answers

vote up 1 vote down

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.

i = 1
If i = 1 Then x = 3 : y = 3 Else x = 7 : y = 7
link|flag
Why go half way??? i = 1 : if i = 1 Then x = 3 : y = 3 Else x = 7 : y = 7 – hamlin11 Jul 29 at 22:52
vote up 2 vote down

Be careful with the IIf opertor though - it is not always short-circuited and both the true and false expressions are evaluated.

link|flag
vote up 1 vote down

You can use the IIf function too:

CheckIt = IIf(TestMe > 1000, "Large", "Small")
link|flag
vote up 1 vote down

Or

IIf(CONDITION, TRUE_ACTION, FALSE_ACTION)
link|flag
And this is an expression, while the question asked for a statement. ;-) – peSHIr Apr 21 at 6:33
vote up 4 vote down

It's actually pretty simple..

If CONDITION Then ..INSERT CODE HERE..
link|flag
And the Else part? – codeape Apr 21 at 6:37
You just put Else <some more code here> at the end. – Johannes Rössel Apr 21 at 6:59
vote up 0 vote down

Just add Then:

If A = 1 Then A = 2

or:

If A = 1 Then _
    A = 2
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.