Skip to content

Latest commit

 

History

History
37 lines (27 loc) · 679 Bytes

RCS1139.md

File metadata and controls

37 lines (27 loc) · 679 Bytes

RCS1139: Add summary element to documentation comment

Property Value
Id RCS1139
Category Maintainability
Severity Warning

Example

Code with Diagnostic

/// <param name="parameter"></param> // RCS1139
public void Foo(object parameter)
{
}

Code with Fix

/// <summary>
/// 
/// </summary>
/// <param name="parameter"></param>
public void Foo(object parameter)
{
}

See Also

(Generated with DotMarkdown)