Difference between If instruction and If operator

Asked

Viewed 13 times

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
  • 1

    Isn’t it the same? http://answall.com/q/154506/101

  • 1

    Did you read the answer? There speaks of the operator

No answers

Browser other questions tagged

You are not signed in. Login or sign up in order to post.