Britbot
int Britbot.Score.CompareTo ( object  obj) [inline]

Used to compare two score elements.

Parameters:
obj
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");
        }