c# - XML comments - refer to property in class -


how describe in xml comments property encoding intiliaze default.

public class settings {     public encoding encoding{get;set;}          /// <summary>         /// initialize new instance of <c>httprequestsettings</c> type.         /// </summary>         /// <remarks>         ///     <para>         ///         how refer property encoding in class , describe property encoding set default ????         ///     </para>         /// </remarks>         public settings()         {             encoding = encoding.default;         } } 

use:

/// ... /// constructor sets <see cref="encoding"/> default value. /// ... 

does lead problems? believe member (property) should have higher "priority" type (class) not nested in current class.


Comments

Popular posts from this blog

css - Which browser returns the correct result for getBoundingClientRect of an SVG element? -

gcc - Calling fftR4() in c from assembly -

Function that returns a formatted array in VBA -