I wish I was making this up. X| Although it's good for a laugh (then a cry) when we go in to fix a bug in his old modules.
I
Imperion
@Imperion
Posts
-
Do you not understand booleans? -
Do you not understand booleans?The horrors I've seen:
void setVisible(bool isVisible)
{
if(isVisible.ToString().ToLower() == "true")
{
this.Visible = true;
}if(isVisible.ToString().ToLower() == "false")
{
this.Visible = false;
}
}