Skip to content

Latest commit

 

History

History
27 lines (19 loc) · 498 Bytes

File metadata and controls

27 lines (19 loc) · 498 Bytes

keywords: Block, If, Else

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