04-09-2012, 01:50 PM
Code:
if (bah == hab)
{
DoStuff;
} else if (bah > hab)
{
DoOtherStuff;
}
Decompiles to:
Code:
if (bah == hab)
{
DoStuff;
} else
{
if (bah > hab)
{
DoOtherStuff;
}
}
It produces the same function (and maybe compiles down to the same thing) but it's really annoying when you have a lot of if elses in a row.