RCS1228: Unused element in a documentation comment
Properties
Property | Value |
---|---|
Default Severity | Hidden |
Minimum language version | - |
Examples
Example #1
diagnostic.cs
/// <summary>
///
/// </summary>
/// <returns></returns>
public string Foo()
{
return null;
}
fix.cs
/// <summary>
///
/// </summary>
public string Foo()
{
return null;
}