Exemple #1
0
        public Statistics()
        {
            CodeStatistics = new CodeStatistics[701];
            for (int i = 0; i < 701; i++)
            {
                CodeStatistics[i] = new CodeStatistics(i);
            }

            All    = new Bumblebee.CodeStatistics(0, "All");
            Server = "NULL";
            Url    = "NULL";
        }
Exemple #2
0
 public Statistics()
 {
     All    = new Bumblebee.CodeStatistics(0, "All");
     Server = "NULL";
     Url    = "NULL";
     Times.Add(new TimeStatistics(0, 10));
     Times.Add(new TimeStatistics(10, 50));
     Times.Add(new TimeStatistics(50, 100));
     Times.Add(new TimeStatistics(100, 500));
     Times.Add(new TimeStatistics(500, 1000));
     Times.Add(new TimeStatistics(1000, 5000));
     Times.Add(new TimeStatistics(5000, 0));
     mData = new StatisticsData(this);
 }