Head First C#

Head First C# Code: Chapter 8
Go Fish
CardComparer_bySuit.cs

 

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace __Go_Fish
{
    class CardComparer_bySuit : IComparer<Card>
    {
        public int Compare(Card x, Card y)
        {
            if (x.Suit > y.Suit)
                return 1;
            if (x.Suit < y.Suit)
                return -1;
            if (x.Value > y.Value)
                return 1;
            if (x.Value < y.Value)
                return -1;
            return 0;
        }
    }
}