Skip to content

Latest commit

 

History

History
39 lines (29 loc) · 682 Bytes

RCS1141.md

File metadata and controls

39 lines (29 loc) · 682 Bytes

RCS1141: Add 'param' element to documentation comment

Property Value
Id RCS1141
Category Maintainability
Severity Hidden

Example

Code with Diagnostic

/// <summary>
/// ...
/// </summary>
public void Foo(object parameter) // RCS1141
{
}

Code with Fix

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

See Also

(Generated with DotMarkdown)