alguidelines/content/docs/BestPractices/line-start-keywords/index.md
2022-03-26 09:01:43 +01:00

776 B

title tags categories
Line Start Keywords
AL
Readability
Best Practice

Created by Microsoft, Described by waldo

Description

The end, if, repeat, for, while, else and case statement should always start a line.

Bad code

    if IsContactName then ValidateContactName()
    else if IsSalespersonCode then ValidateSalespersonCode()
    else if IsSalesCycleCode then ValidatSalesCycleCode();

Good code

    if IsContactName then
        ValidateContactName()
    else
        if IsSalespersonCode then
            ValidateSalespersonCode()
        else
            if IsSalesCycleCode then 
                ValidatSalesCycleCode();