Files
code-rules/CSHARP_FORMATTING.md

323 B

C#/.NET Formatting

When writing an if condition, always wrap the content of the if condition in { and }.

For example:

Instead of the following:

if (value == 123)
    Console.WriteLine("It's 123");

Write the following instead:

if (value == 123)
{
    Console.WriteLine("It's 123");
}