Exemplo n.º 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);
     }
 }
Exemplo n.º 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);
     }
 }