Skip to content

Latest commit

 

History

History
53 lines (38 loc) · 777 Bytes

RCS1181.md

File metadata and controls

53 lines (38 loc) · 777 Bytes

RCS1181: Convert comment to documentation comment

Property Value
Id RCS1181
Category General
Severity Hidden

Examples

Code with Diagnostic

// Represents foo. // RCS1181
public class Foo
{
}

Code with Fix

/// <summary>
/// Represents foo.
/// </summary>
public class Foo
{
}

Code with Diagnostic

public string Value { get; } // Gets a value. // RCS1181

Code with Fix

/// <summary>
/// Gets a value.
/// </summary>
public string Value { get; }

See Also

(Generated with DotMarkdown)