Having this code:
C#try
{
}
catch (Exception ex)
{
// Some comment
SomeFunctionFromThisClass();
}
After running code cleanup with "Apply 'this' qualifiert style' I get the following code:
C#try
{
}
catch (Exception ex)
{
this.
// Some comment
SomeFunctionFromThisClass();
}
Instead I would have expected to get this:
C#try
{
}
catch (Exception ex)
{
// Some comment
this.SomeFunctionFromThisClass();
}
Hi Pasсal,
Thank you for the provided code snippets. I have reproduced the problem.
We will do our best to fix the issue as soon as possible. Once we resolve the problem, we will let you know about this in the context of this ticket.