Send comments on this topic. |
|
Glossary Item Box
Cause
Rule Description
A violation of this rule occurs when part of the documentation does not end with a period. For example, the summary text in the documentation below does not end with a period:
/// <summary>
/// Joins a first name and a last name together into a single string
/// </summary>
/// <param name="firstName">The first name.</param>
/// <param name="lastName">The last name.</param>
/// <returns>The joined names.</returns>
public string JoinNames(string firstName, string lastName)
{
...
}
How to Fix Violations
© Microsoft Corporation. All Rights Reserved.