csharp-standards
Installation
SKILL.md
C# Coding Standards & Conventions
Apply these standards when writing C# code for .NET projects.
Naming Conventions
1. PascalCase
Use for classes, interfaces, enums, methods, properties, and events:
public class UserService { }
public interface IUserRepository { }
public enum OrderStatus { }
public void ProcessOrder() { }
public string FirstName { get; set; }