Brace Style
class MyClass {
void DoSomething() {
if (someTest) {
// ...
} else {
// ...
}
}
}class MyClass
{
void DoSomething()
{
if (someTest)
{
// ...
}
else
{
// ...
}
}
}Last updated
Was this helpful?