Ejemplo n.º 1
0
 static Hands getNext(Hands[] hands , int last)
 {
     return last
            == hands.Max(x => x.Position)
                ? hands.First()
                : hands.Where(x => x.Position > last).First();
 }
Ejemplo n.º 2
0
        static Hands GetFirstPlayer(Hands[] hands, bool preflop)
        {
            int positionButton = hands.First().PositionButton;
            if (preflop)
            {
                var sb = getNext(hands, positionButton);
                var bb = getNext(hands, sb.Position);

                return getNext(hands, bb.Position);
            }

            return getNext(hands, positionButton);
        }