Britbot
static bool Britbot.Simulator.SimulatedGroup.operator!= ( SimulatedGroup  sg1,
SimulatedGroup  sg2 
) [inline, static]

Determines if two group are not the same.

Parameters:
sg1first group
sg2scond group
Returns:
true if the two groups are not identical and false if they are

Definition at line 133 of file SimulatedGroup.cs.

        {
            return !(sg1 == sg2);
        }