PivotalPoker.Models.Game.GetPoints C# (CSharp) Method

GetPoints() private method

private GetPoints ( ) : int
return int
        private int GetPoints()
        {
            return GetCards().Select(c => c.Points).Distinct().Single();
        }