|
Britbot
|
Checks if 2 smart Islands are equal.
Definition at line 534 of file SmartIsland.cs. {
SmartIsland b = obj as SmartIsland;
if (b != null)
{
return this.Equals(b);
}
return false;
}
|
1.7.6.1