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