コード例 #1
0
 public void read(BinaryReader r)
 {
     this.Count = r.ReadInt32();
     this.PhraseExtraInfoByLevel = new PhraseExtraInfoByLevel[this.Count]; for (int i = 0; i < this.Count; i++)
     {
         PhraseExtraInfoByLevel obj = new PhraseExtraInfoByLevel(); obj.read(r); this.PhraseExtraInfoByLevel[i] = obj;
     }
 }
コード例 #2
0
 public void read(EndianBinaryReader r)
 {
     Count = r.ReadInt32();
     PhraseExtraInfoByLevel = new PhraseExtraInfoByLevel[Count]; for (int i = 0; i < Count; i++)
     {
         var obj = new PhraseExtraInfoByLevel(); obj.read(r); PhraseExtraInfoByLevel[i] = obj;
     }
 }
コード例 #3
0
 public void read(EndianBinaryReader r)
 {
     Count = r.ReadInt32();
     PhraseExtraInfoByLevel = new PhraseExtraInfoByLevel[Count]; for (int i = 0; i < Count; i++) { var obj = new PhraseExtraInfoByLevel(); obj.read(r); PhraseExtraInfoByLevel[i] = obj; }
 }
コード例 #4
0
 public void read(BinaryReader r)
 {
     this.Count = r.ReadInt32();
     this.PhraseExtraInfoByLevel = new PhraseExtraInfoByLevel[this.Count]; for (int i=0; i<this.Count; i++) { PhraseExtraInfoByLevel obj = new PhraseExtraInfoByLevel(); obj.read(r); this.PhraseExtraInfoByLevel[i] = obj; }
 }