Britbot
override bool Britbot.SmartIsland.Equals ( object  obj) [inline]

Checks if 2 smart Islands are equal.

Parameters:
objThe object to check with
Returns:
True if the islands are the same or false otherwise

Definition at line 534 of file SmartIsland.cs.

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