Send comments on this topic. |
|
Glossary Item Box
Cause
Rule Description
A violation of this rule occurs when the documentation header for an element contains an empty tag. For example:
/// <summary>
/// Joins a first name and a last name together into a single string.
/// </summary>
/// <param name="firstName"> </param>
/// <param name="lastName">Part of the name.</param>
/// <returns>The joined names.</returns>
public string JoinNames(string firstName, string lastName)
{
...
}
How to Fix Violations
© Microsoft Corporation. All Rights Reserved.