Example #1
0
 public void Statistics()
 {
     result = new List <string>();
     Console.WriteLine();
     Console.WriteLine("---------------");
     Console.WriteLine();
     Console.WriteLine("Min:" + statistics.GetMin(list).ToString());
     Console.WriteLine("Max:" + statistics.GetMax(list).ToString());
     Console.WriteLine("Mod:" + statistics.GetMod(list).ToString());
     Console.WriteLine("STDEV:" + statistics.GetSTDev(list).ToString());
     Console.WriteLine("Median:" + statistics.GetMedian(list));
     Console.WriteLine();
     Console.WriteLine("---------------");
     result = statistics.Between(list);
 }