DEV Community

Hassan BOLAJRAF
Hassan BOLAJRAF

Posted on

C# | Avoid Multiple Nested If-Else Statements Using Guard Clause

Note
You can check other posts on my personal website: https://hbolajraf.net

In C#, multiple nested if-else statements can often lead to code that is hard to read, understand, and maintain. Guard Clauses offer a technique to refactor such code and make it more readable and maintainable. In this guide, we'll explore how to avoid multiple nested if-else statements using Guard Clauses in C# with detailed examples.

What are Guard Clauses?

Guard Clauses, also known as Early Returns, are conditional statements placed at the beginning of a method to handle exceptional cases or conditions. Instead of nesting multiple if-else blocks, Guard Clauses provide a clear exit strategy if certain conditions are met, reducing the complexity of the code.

Example without Guard Clauses

Consider the following C# method that calculates the total price of a product with different discounts based on the customer type:

public decimal CalculateTotalPrice(Product product, CustomerType customerType)
{
    decimal totalPrice = 0;

    if (product != null)
    {
        decimal basePrice = product.BasePrice;

        if (customerType == CustomerType.Regular)
        {
            totalPrice = basePrice * 0.95m; // 5% discount for regular customers
        }
        else if (customerType == CustomerType.Premium)
        {
            totalPrice = basePrice * 0.90m; // 10% discount for premium customers
        }
        else if (customerType == CustomerType.VIP)
        {
            totalPrice = basePrice * 0.85m; // 15% discount for VIP customers
        }
    }

    return totalPrice;
}
Enter fullscreen mode Exit fullscreen mode

This code contains multiple nested if-else statements, which can make it difficult to understand and maintain as more conditions are added.

Example with Guard Clauses

Now, let's refactor the above method using Guard Clauses:

public decimal CalculateTotalPrice(Product product, CustomerType customerType)
{
    if (product == null)
    {
        return 0; // No product, return 0
    }

    decimal basePrice = product.BasePrice;

    if (customerType == CustomerType.Regular)
    {
        return basePrice * 0.95m; // 5% discount for regular customers
    }

    if (customerType == CustomerType.Premium)
    {
        return basePrice * 0.90m; // 10% discount for premium customers
    }

    if (customerType == CustomerType.VIP)
    {
        return basePrice * 0.85m; // 15% discount for VIP customers
    }

    return basePrice; // Default price if no specific discount applies
}
Enter fullscreen mode Exit fullscreen mode

In this refactored version, each special condition is checked at the beginning of the method, and if it's met, the method returns immediately. This approach reduces nesting and makes the code more readable and maintainable.

Benefits of Using Guard Clauses

  • Readability: Guard Clauses make the code easier to understand by removing unnecessary nesting.
  • Maintainability: It's easier to maintain and extend the code as new conditions can be added without adding more nesting.
  • Debugging: Guard Clauses provide clear exit points, making it easier to debug and trace the flow of execution.

What Next?

Guard Clauses offer a cleaner and more maintainable way to handle special conditions in C# methods, especially when dealing with multiple nested if-else statements. By using Guard Clauses, you can improve the readability and maintainability of your code, making it easier to understand and debug.

Top comments (0)