show/hide this revision's text 2 added 318 characters in body

If you have the same guard statement at the beginning of too many methods, you can create a method called executeWithGuard:

private void executeWithGuard(Action method)
{
    if (HeadSize) method();
}

Then you could do this:

public void ScreenFirstShot()
{
    executeWithGuard(() =>
    {
        // code here
    });
}

public void ScreenSecondShot()
{
    ExecuteWithGuard(() =>
    {
        // code here
    });
}
public void CrazyUp()
{
    ExecuteWithGuard(() =>
    {
        // code here
    });
}

There's no less code doing this... in fact, there's probably more code, but it does allow you to not have to do a find/replace if your guard condition ever changes. I'd only suggest it as a last resort, though. It's very possible that your real problem is that you're doing your validation too far down the call tree. If you can do it at a higher level, you may save yourself from all of this validation.

ALSO

Have a look at the null object patttern. This pattern can be used in some special cases to prevent or simplify state checking.

ALSO (rev 2)

It's hard to know what your intent is since the question focuses on a specific solution, but if you're executing these methods sequentially, you can look at using the strategy pattern, and putting the check in your base strategy class.

show/hide this revision's text 1

If you have the same guard statement at the beginning of too many methods, you can create a method called executeWithGuard:

private void executeWithGuard(Action method)
{
    if (HeadSize) method();
}

Then you could do this:

public void ScreenFirstShot()
{
    executeWithGuard(() =>
    {
        // code here
    });
}

public void ScreenSecondShot()
{
    ExecuteWithGuard(() =>
    {
        // code here
    });
}
public void CrazyUp()
{
    ExecuteWithGuard(() =>
    {
        // code here
    });
}

There's no less code doing this... in fact, there's probably more code, but it does allow you to not have to do a find/replace if your guard condition ever changes. I'd only suggest it as a last resort, though. It's very possible that your real problem is that you're doing your validation too far down the call tree. If you can do it at a higher level, you may save yourself from all of this validation.

ALSO

Have a look at the null object patttern. This pattern can be used in some special cases to prevent or simplify state checking.