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