csharp
Installation
SKILL.md
Google C# Style Guide
Official Google C# coding standards for consistent, maintainable .NET code.
Golden Rules
- Follow .NET naming conventions — PascalCase for public members
- Use async/await for asynchronous operations
- LINQ for collections — prefer declarative over imperative
- XML documentation for public APIs
- Use
varwhen type is obvious from right side - Prefer expression-bodied members when concise
- Use nullable reference types (C# 8.0+)