Britbot
bool Britbot.SmartIsland.Equals ( SmartIsland  other) [inline, protected]

Checks if 2 smart Islands are equal.

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

Definition at line 523 of file SmartIsland.cs.

        {
            bool eq = this.Id == other.Id;
            return eq;
        }