Esempio n. 1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="RomReader"/> class based on the specified file.
 /// </summary>
 /// <param name="file">The file.</param>
 /// <exception cref="FileNotFoundException"></exception>
 public RomReader(RomFileInfo file)
     : this(file.OpenRead(), false)
 {
 }
Esempio n. 2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="RomWriter"/> class based on the specified file.
 /// </summary>
 /// <param name="file">The file.</param>
 /// <exception cref="FileNotFoundException"></exception>
 public RomWriter(RomFileInfo file)
     : this(file.OpenWrite(), false)
 {
 }