/// <summary>
 /// Initializes a new instance of the <see cref="BfshaFile"/> class from the file with the given
 /// <paramref name="fileName"/>.
 /// </summary>
 /// <param name="fileName">The name of the file to load the data from.</param>
 public BfshaFile(string fileName)
 {
     using (BfshaFileLoader loader = new BfshaFileLoader(this, fileName))
     {
         loader.Execute();
     }
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="BfshaFile"/> class from the given <paramref name="stream"/> which
 /// is optionally left open.
 /// </summary>
 /// <param name="stream">The <see cref="Stream"/> to load the data from.</param>
 /// <param name="leaveOpen"><c>true</c> to leave the stream open after reading, otherwise <c>false</c>.</param>
 public BfshaFile(Stream stream, bool leaveOpen = false)
 {
     using (BfshaFileLoader loader = new BfshaFileLoader(this, stream, leaveOpen))
     {
         loader.Execute();
     }
 }