|
Britbot
|
Check if the two objects are the same.
Definition at line 328 of file HeadingVector.cs. {
if (object.ReferenceEquals(null, obj))
return false;
if (object.ReferenceEquals(this, obj))
return true;
if (obj.GetType() != this.GetType())
return false;
return Equals((HeadingVector) obj);
}
|
1.7.6.1