示例#1
0
 public CountersDescEvent(LogFileReader reader)
 {
     Len      = reader.ReadULeb128();
     Sections = new CounterSection[Len];
     for (ulong i = 0; i < Len; i++)
     {
         Sections [i] = new CounterSection(reader);
     }
 }
示例#2
0
 public CountersDescEvent(LogFileReader reader)
 {
     Len = reader.ReadULeb128 ();
     Sections = new CounterSection[Len];
     for (ulong i = 0; i < Len; i++) {
         Sections [i] = new CounterSection (reader);
     }
 }