Skip to content

Latest commit

 

History

History
41 lines (31 loc) · 745 Bytes

RCS1142.md

File metadata and controls

41 lines (31 loc) · 745 Bytes

RCS1142: Add 'typeparam' element to documentation comment

Property Value
Id RCS1142
Category Maintainability
Severity Hidden

Example

Code with Diagnostic

/// <summary>
/// ...
/// </summary>
/// <typeparam name="T1"></typeparam>
public class Foo<T1, T2> // RCS1142
{
}

Code with Fix

/// <summary>
/// ...
/// </summary>
/// <typeparam name="T1"></typeparam>
/// <typeparam name="T2"></typeparam>
public class Foo<T1, T2>
{
}

See Also

(Generated with DotMarkdown)