Mute code style warnings in iso-parser

This commit is contained in:
James Groom 2023-11-24 05:28:41 +00:00 committed by GitHub
parent 0517294605
commit a605443590
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

View File

@ -51,12 +51,14 @@ namespace ISOParser
/// </summary>
public const int SECTOR_SIZE = 2048;
#pragma warning disable CA2211
/// <summary>
/// Making this a static for now. Every other way I tried was fairly ineligant (asni)
/// </summary>
public static ISOFormat Format;
public static List<CDIPathNode> CDIPathTable;
#pragma warning restore CA2211
/// <summary>
/// This is a list of all the volume descriptors in the disk image.

View File

@ -161,11 +161,11 @@ namespace ISOParser
// Read Data Offset
s.Read(buffer, 0, 8);
this.OffsetOfData = (long)bc.ToInt32(buffer);
this.OffsetOfData = bc.ToInt32(buffer);
// Read Data Length
s.Read(buffer, 0, 8);
this.LengthOfData = (long)bc.ToInt32(buffer);
this.LengthOfData = bc.ToInt32(buffer);
// Read the time and flags
s.Read(buffer, 0, 8);