Exemple #1
0
 public HistoryLog()
 {
     _table = new HistoryTable <string>(defaultMaxCount);
 }
Exemple #2
0
 public HistoryLog(int maxCount)
 {
     _table = new HistoryTable <string>(maxCount);
 }