Thanks for clearing up the bear-bare misunderstanding.
I Google'd it for accuracy, and by golly, you are right. Quite incompetent of me.

Also thanks for being the only person to reply.

I need to create a variable that my program can set to true or false (bool), so that all the other classes can check the value of it.
Code:
Class1
{
if (variablename == false)
break;
}
Class2
{
if (variablename == false)
break;
}
Class3
{
if (variablename == false)
break;
}
Can you show me example of how to make this 'variablename' accessible by all 3 classes?