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