예제 #1
0
 private int GetVictoryPoints()
 {
     return(CardsInPlay
            .Select(n => n.VictoryPoints)
            .Concat(Nobles.Select(c => c.VictoryPoints))
            .Sum());
 }