示例#1
0
 static string ScoreForPoints(GamePoints points)
 {
     return points.AreEqual()
     ? ScoreForPlayersEqual(points)
     : ScoreForPlayerLeading(points);
 }
示例#2
0
 static string ScoreForPoints(GamePoints points)
 {
     return(points.AreEqual()
 ? ScoreForPlayersEqual(points)
 : ScoreForPlayerLeading(points));
 }