c# - Intellisense XML Documentation for multiple variable declaration. -
i have started adding xml documentation code. trying add together code declare multiple variables in 1 line. example:
/// <summary> integer1 </summary> public static readonly int integer1 = 0, integer2 = 1;
when doing above displays integer1 both of variables.
i hoping this.
public static readonly int /// <summary> integer1 </summary> integer1 = 0, /// <summary> integer2 </summary> integer2 = 1;
i similar above can maintain public static readonly above , maintain groups rather declaring public static readonly multiple times. says xml comment not placed on valid element.
is possible in way want or stuck re-declaring of them ?
c# intellisense
No comments:
Post a Comment