What problem does it solve? Inconsistent or missing XML documentation comments make C# APIs hard to understand and maintain. This Skill provides clear conventions for documenting classes, methods, properties, and constructors so your codebase stays readable and professional. ## Core Features & Use Cases - XML Comment Conventions: Standardized guidance for <summary>, <remarks>, <param>, <returns>, <see>, and <example> tags on public and internal APIs. - Member-Specific Rules: Covers wording patterns for methods, constructors, properties, Boolean values, enums, out parameters, and exceptions. - Use Case: When reviewing a pull request that adds a new public method, use this Skill to verify the <param> descriptions are noun phrases, Boolean returns follow the "true if...; otherwise, false" pattern, and thrown exceptions are documented with <exception cref>. ## Quick Start Review the XML documentation comments on this C# class and rewrite them following the csharp-docs best practices.