class MyClass
{
void A()
{
int i = 1;
if (i == 1)
{
Console.WriteLine(""); }
}
}
Result:
class MyClass
{
void A()
{
int i = 1;
if (i == 1)
{
Console.WriteLine("");
}
}
}
That functionality can also be reached under Edit > Advanced > Format Selection.
To format the whole code, press Ctrl+E+D
No comments:
Post a Comment