CleanCode.Tennis.GetScore C# (CSharp) Method

GetScore() private method

private GetScore ( int points ) : string
points int
return string
        private string GetScore(int points)
        {
            if (points == 1) return "fifteen";
            if (points == 2) return "thirty";
            if (points == 3) return "forty";
            return "love";
        }