Example #1
0
 public void UpdateModel(StatisticModel model, int index)
 {
     Debug.Assert(index >= 0 && index <= statistics.Length);
     statistics[index] = model;
     OnStatisticChanged(index);
 }
Example #2
0
 public ChangedStatisticEvent(int index, StatisticModel model)
 {
     Index = index;
     Model = model;
 }