コード例 #1
0
ファイル: Event.cs プロジェクト: puppytodd/heap-shot
 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
ファイル: Event.cs プロジェクト: facemao3/heap-shot
 public CountersDescEvent(LogFileReader reader)
 {
     Len = reader.ReadULeb128 ();
     Sections = new CounterSection[Len];
     for (ulong i = 0; i < Len; i++) {
         Sections [i] = new CounterSection (reader);
     }
 }