RocksmithToolkitLib.Sng2014HSL.Section.read C# (CSharp) Method

read() public method

public read ( EndianBinaryReader r ) : void
r EndianBinaryReader
return void
        public void read(EndianBinaryReader r)
        {
            Name = r.ReadBytes(32);
            Number = r.ReadInt32();
            StartTime = r.ReadSingle();
            EndTime = r.ReadSingle();
            StartPhraseIterationId = r.ReadInt32();
            EndPhraseIterationId = r.ReadInt32();
            StringMask = r.ReadBytes(36);
        }

Usage Example

Example #1
0
 public void read(BinaryReader r)
 {
     this.Count    = r.ReadInt32();
     this.Sections = new Section[this.Count]; for (int i = 0; i < this.Count; i++)
     {
         Section obj = new Section(); obj.read(r); this.Sections[i] = obj;
     }
 }
All Usage Examples Of RocksmithToolkitLib.Sng2014HSL.Section::read
Section