Used to compare two score elements.
- Parameters:
-
- Returns:
Definition at line 85 of file Score.cs.
{
Score score = obj as Score;
if (score != null)
{
return this.CompareTo(score);
}
throw new ArgumentException("Object must a a Score in order to compare it with another score object");
}