Пример #1
0
 public void AddPoint(IEnumerable <PointF> points)
 {
     foreach (var point in points)
     {
         trkLIFO.Add(point);
     }
     UpdateStatistics();
 }
Пример #2
0
 public void AppendHistory(string text)
 {
     history.Add(text.Replace("\r\n", " "));
     historyLines = history.ToArray();
 }