I cant for the life of me remember what the word is. It's when you ???? several if/else/for/while/usings inside each other.
bool isTrue = true, isFalse = true, HasForgottenWord = true;
if( isTrue )
{
if( isFalse )
{
if( HasForgottenWord )
{
Console.WriteLine("Ask on StackOverflow.com - kthx bye");
}
}
}
Edit: Thank you all!