TypeName | DOC207UseSeeLangwordCorrectly |
CheckId | DOC207 |
Category | Portability Rules |
The documentation contains a <see langword="..."/>
element with an unrecognized keyword.
A violation of this rule occurs when documentation contains a see langword
element but the reference is not recognized
as a language keyword.
/// <summary>
/// This variable is <see langword="correct"/>.
/// </summary>
public int correct;
To fix a violation of this rule, replace the see langword
syntax with the equivalent inline code.
/// <summary>
/// This variable is <c>correct</c>.
/// </summary>
public int correct;
#pragma warning disable DOC207 // Use 'see langword' correctly
/// <summary>
/// This variable is <see langword="correct"/>.
/// </summary>
public int correct;
#pragma warning restore DOC207 // Use 'see langword' correctly