Britbot
bool Britbot.SmartIsland.Equals ( ITarget  operandB) [inline]

Checks if 2 smart Islands are equal.

Parameters:
operandBThe island to check with
Returns:
True if the islands are the same or false otherwise

Implements Britbot.ITarget.

Definition at line 196 of file SmartIsland.cs.

        {
            SmartIsland b = operandB as SmartIsland;
            if (b != null)
            {
                return this.Equals(b);
            }

            return false;
        }