コード例 #1
0
ファイル: Settings.cs プロジェクト: nickp10/mcubed-farkle
 public void AddScore(int score)
 {
     HighScores = HighScores.Concat(new[] { new HighScore {
                                                Name = Name, Score = score, Date = DateTime.Now
                                            } });
 }