PokerHands.Hand.Hand C# (CSharp) Method

Hand() public method

public Hand ( Card one, Card two, Card three, Card four, Card five ) : System.Collections.Generic
one Card
two Card
three Card
four Card
five Card
return System.Collections.Generic
        public Hand(Card one, Card two, Card three, Card four, Card five)
        {
            _cards = new[] { one, two, three, four, five };
            Rank = GetRank();
        }