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

Checks if 2 smart islands are different.

Parameters:
aIsland 1
bIsland 2
Returns:
False if the islands are the same or true otherwise

Definition at line 513 of file SmartIsland.cs.

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