Skip to content

Latest commit

 

History

History
33 lines (23 loc) · 581 Bytes

RCS9009.md

File metadata and controls

33 lines (23 loc) · 581 Bytes

RCS9009: Unknown language name

Property Value
Id RCS9009
Severity Warning

Example

Code with Diagnostic

[DiagnosticAnalyzer("C")] // RCS9009
class FooDiagnosticAnalyzer : DiagnosticAnalyzer
{
}

Code with Fix

[DiagnosticAnalyzer("C#")]
class FooDiagnosticAnalyzer : DiagnosticAnalyzer
{
}

Applies to

(Generated with DotMarkdown)