R#6.1 code-cleanup frustration
Hello,
I'm using the latest R#6.1 EAP.
This is really annoying, XML comments aren't aligned properly again! this time it's the tags rather than the content.
I've attached a file and here is a snippet.
///<summary>
/// Initializes a new instance of the <see cref="UserAccountValidationException" /> class.
///</summary>
///<param name="message"> A message that describes why this <see cref="UserAccountValidationException" /> exception was thrown. </param>
public UserAccountValidationException(string message)
: base(message)
{
}
/// <summary>
/// Initializes a new instance of the <see cref="UserAccountValidationException" /> class.
/// </summary>
/// <param name="message"> A message that describes why this <see cref="UserAccountValidationException" /> exception was thrown. </param>
/// <param name="innerException"> The inner exception that caused this <see cref="UserAccountValidationException" /> exception to be thrown. </param>
public UserAccountValidationException(string message, Exception innerException)
: base(message, innerException)
{
}
Attachment(s):
UserAccountValidationException.cs.zip
Please sign in to leave a comment.
Hi Eyal,
Thanks for reporting! I have created a bug report linking to this thread that you can watch and comment if required.
We hope to be able to fix this problem for the next release.