Skip to content

Latest commit

 

History

History
37 lines (27 loc) · 740 Bytes

RR0192.md

File metadata and controls

37 lines (27 loc) · 740 Bytes

Convert comment to documentation comment

Property Value
Id RR0192
Title Convert comment to documentation comment
Syntax single-line comment
Enabled by Default

Usage

Before

// comment
public class Foo
{
}

After

/// <summary>
/// comment
/// </summary>
public class Foo
{
}

See Also

(Generated with DotMarkdown)