Nasty code cleanup bug
private void Test1(/*string x*/)
{}
private void Test2(int x/*, string x*/)
{ }
private void Test3(/*string x,*/ int y )
{ }
Is converted into
private void Test1( // string x)
{
}
private void Test2(int x // , string x)
{
}
private void Test3( // string x, int y)
{
}
Which somehow doesnt really compile anymore. Yet, if there are spaces inside the /* */ comments, this does not happen.
Please sign in to leave a comment.