Britbot
static bool Britbot.SmartIsland.operator== ( SmartIsland  a,
SmartIsland  b 
) [inline, static]

Checks if 2 smart Islands are equal.

Parameters:
aIsland 1
bIsland 2
Returns:
True if the islands are the same or false otherwise

Definition at line 502 of file SmartIsland.cs.

        {
            return object.Equals(a, b);
        }