Example #1
0
 /// <summary>
 /// Dump the class data to a binary writer
 /// </summary>
 /// <param name="writer">writer to write the data</param>
 internal void Dump(ref BinaryWriter writer)
 {
     _header.Dump(ref writer);
     writer.Write(_binaryFileData.Length);
     writer.Write(_binaryFileData);
 }