Do you ever saw code like this in your practice?
bool b;
...
if(b == true)
{
}
or
if {
if {
if {
...
}
else {...}
}
else {...}
}
else {...}
or most awesome
if(SomeFunc() > 5)
{
int someVal = SomeFunc();
...
}
if no, you are lucky :) what other worst and funny codes did you see in your practice? My samples are in C# but you can write snippets in any languages
