Block If Else
Migrated Code Examples:
Simple If - Else
if (Num1 > 10)
Message.ShowWarning("Inside If");
else
Message.ShowWarning("Insdie Else");
Else with expression
if (Num1 > 10)
Message.ShowWarning("Inside If");
else if (Num1 < 2)
Message.ShowWarning("Insdie Else with Expression");
For more information about if see: IF Statement Explanation
Help us improve, Edit this page on GitHub
or email us at info@fireflymigration.com