Exemple #1
0
 public void ShowAllCounters()
 {
     ShowLine();
     foreach (var counter in counterService.GetAllCounters())
     {
         Console.WriteLine(counter.Name + " : " + counter.Count);
     }
     Console.WriteLine("Type --help , if you want see commands.");
     ShowLine();
 }