csharp-development
SKILL.md
C# Development Standards
Core Requirements
- MUST use the latest version C#, currently C# 13 features
- MUST apply code-formatting style defined in
.editorconfig - MUST write clear and concise comments for each function
- MUST make only high confidence suggestions when reviewing code changes
Naming Conventions
| Element | Convention | Example |
|---|---|---|
| Components/Methods/Public members | PascalCase |
UserService, GetUserById |
| Private fields/Local variables | camelCase |
userId, isValid |
| Interfaces | I prefix + PascalCase |
IUserService |