I would like R# to detect references to members, classes, parameters, generic parameters in the code documentation and either offer completion or quickfixes just to generate the necessary markup.
Just by typing "The parameter bar of type IBar..... " inside a code documentation tag R# could quickly fix it to be "The parameter <paramref name="bar"/> of type <see ref="IBar"/>...."
I would then use much more references in the documentation.
/// <summary> /// The parameter <paramref name="bar"/> of /// type <see ref="IBar"/> .... /// </summary> void Foo(IBar bar);....
You like it? Vote for the feature request in JetBrains Jira!
Advertisements