Britbot
int Britbot.Score.CompareTo ( Score  other) [inline]

Used to compare two score elements.

Parameters:
other
Returns:

Definition at line 101 of file Score.cs.

        {
            return (this.Value * 10 - this.Eta).CompareTo((other.Value * 10 - other.Eta));
        }