/// <summary>
 /// Export Entry to stream
 /// </summary>
 /// <param name="BW"></param>
 /// <remarks>Not the <see cref="Properties"/> as this is done later</remarks>
 public void Export(BinaryWriter BW)
 {
     BW.Write(EntryType);
     ObjectData.Export(BW);
 }