read() public method

public read ( EndianBinaryReader r ) : void
r EndianBinaryReader
return void
Exemplo n.º 1
0
 public void read(BinaryReader r)
 {
     this.Count            = r.ReadInt32();
     this.PhraseIterations = new PhraseIteration[this.Count]; for (int i = 0; i < this.Count; i++)
     {
         PhraseIteration obj = new PhraseIteration(); obj.read(r); this.PhraseIterations[i] = obj;
     }
 }
Exemplo n.º 2
0
 public void read(EndianBinaryReader r)
 {
     Count            = r.ReadInt32();
     PhraseIterations = new PhraseIteration[Count]; for (int i = 0; i < Count; i++)
     {
         var obj = new PhraseIteration(); obj.read(r); PhraseIterations[i] = obj;
     }
 }
 public void read(EndianBinaryReader r)
 {
     Count = r.ReadInt32();
     PhraseIterations = new PhraseIteration[Count]; for (int i = 0; i < Count; i++) { var obj = new PhraseIteration(); obj.read(r); PhraseIterations[i] = obj; }
 }
 public void read(BinaryReader r)
 {
     this.Count = r.ReadInt32();
     this.PhraseIterations = new PhraseIteration[this.Count]; for (int i=0; i<this.Count; i++) { PhraseIteration obj = new PhraseIteration(); obj.read(r); this.PhraseIterations[i] = obj; }
 }