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
Post a Comment