using System; class Stuff { static void Foo(int x) { if (x > 0) // comment { Console.WriteLine("x > 0"); } else { Console.WriteLine("x <= 0"); } } }
Try to invert if. Comment disappears.