Skip to content

Latest commit

 

History

History
41 lines (31 loc) · 644 Bytes

RCS1228.md

File metadata and controls

41 lines (31 loc) · 644 Bytes

RCS1228: Unused element in documentation comment

Property Value
Id RCS1228
Category Readability
Severity Hidden

Example

Code with Diagnostic

/// <summary>
/// 
/// </summary>
/// <returns></returns> // RCS1228
public string Foo()
{
    return null;
}

Code with Fix

/// <summary>
/// 
/// </summary>
public string Foo()
{
    return null;
}

See Also

(Generated with DotMarkdown)