csharp-coding-guidelines

star 3

Coding guidelines for C# development. Use whenever you generate C# code.

rstropek By rstropek schedule Updated 3/2/2026

name: csharp-coding-guidelines description: Coding guidelines for C# development. Use whenever you generate C# code.

Single-Line Statements

Always use braces {} for single-line statements, even if they are not required.

Bad:

if (condition)
    DoSomething();

Good:

if (condition)
{
    DoSomething();
}
Install via CLI
npx skills add https://github.com/rstropek/2026-03-02-basta --skill csharp-coding-guidelines
Repository Details
star Stars 3
call_split Forks 1
navigation Branch main
article Path SKILL.md
More from Creator