Mute code style warnings in iso-parser
This commit is contained in:
parent
0517294605
commit
a605443590
|
@ -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.
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue