csharp

Installation
SKILL.md

Google C# Style Guide

Official Google C# coding standards for consistent, maintainable .NET code.

Golden Rules

  1. Follow .NET naming conventions — PascalCase for public members
  2. Use async/await for asynchronous operations
  3. LINQ for collections — prefer declarative over imperative
  4. XML documentation for public APIs
  5. Use var when type is obvious from right side
  6. Prefer expression-bodied members when concise
  7. Use nullable reference types (C# 8.0+)

Quick Reference

Naming Conventions

Installs
2
GitHub Stars
9
First Seen
Jul 14, 2026
csharp — testdino-hq/google-styleguides-skills