[2150]Broken comment formatting on implementing equality members
i generated equaltiy members for a C# class with XML comments. The result for the comment is:
Also it would be nice if the generator takes account to the naming style settings. For example in our naming rules we have to precede parameters with a "p". The generated code uses the standard naming convention which results in a warning.
Regards
Klaus
Please sign in to leave a comment.
Hello Klaus,
Parameter name is taken from the Equals method in System.Object, which it
overrides. What do you think parameter name should be?
Sincerely,
Ilya Ryzhenkov
JetBrains, Inc
http://www.jetbrains.com
"Develop with pleasure!"
KL> i generated equaltiy members for a C# class with XML comments. The
KL> result for the comment is:
KL>
KL> Image:2011-05-09 08h53_56.png Also it would be nice if the
KL> generator takes account to the naming style settings. For example in
KL> our naming rules we have to precede parameters with a "p". The
KL> generated code uses the standard naming convention which results in
KL> a warning.
KL>
KL> Regards
KL> Klaus
KL> ---
KL> Original message URL:
KL> http://devnet.jetbrains.net/message/5302632#5302632
as my naming convention defines the prefix "p" for parameters the signature should be
public override bool Equals(object pObj)
I think this is a feature request.
Regards
Klaus