0
What are the differences between the if instruction and the if operator in VB.NET?
If(Condicao, x(), y())
If Condicao Then
x()
Else
y()
End If
0
What are the differences between the if instruction and the if operator in VB.NET?
If(Condicao, x(), y())
If Condicao Then
x()
Else
y()
End If
Browser other questions tagged vb.net if operators
You are not signed in. Login or sign up in order to post.
Isn’t it the same? http://answall.com/q/154506/101
– Maniero
Did you read the answer? There speaks of the operator
– Maniero