0
mirror of https://github.com/sampletext32/ParkanPlayground.git synced 2025-06-19 16:08:02 +03:00

fix float

This commit is contained in:
bird_egop
2025-04-13 00:21:01 +03:00
parent 016e1ee54f
commit 7063a4a5a8
4 changed files with 77 additions and 67 deletions

View File

@ -5,7 +5,7 @@ namespace X86Disassembler.PE;
/// <summary>
/// Represents a Portable Executable (PE) file format parser
/// </summary>
public class PEFormat
public class PeFile
{
// DOS Header constants
private const ushort DOS_SIGNATURE = 0x5A4D; // 'MZ'
@ -66,7 +66,7 @@ public class PEFormat
/// Initializes a new instance of the PEFormat class
/// </summary>
/// <param name="fileData">The raw file data</param>
public PEFormat(byte[] fileData)
public PeFile(byte[] fileData)
{
_fileData = fileData;
SectionHeaders = new List<SectionHeader>();