1.2.2.Documentation Comments for A member variable
using System;
namespace DocumentationCommentsExample
{
/// <summary>
/// A documentation sample - the short description goes here
/// </summary>
/// <remarks>Where a longer description would go</remarks> class ClassExample
{
/// <summary>
/// A member variable
/// </summary> private string m_str;