Files
BinaryObjectScanner/BinaryObjectScanner.Models/NewExecutable/Constants.cs
Matt Nadareski 473cbc5694 BOS.* -> BOS.*
2023-03-07 16:59:14 -05:00

11 lines
290 B
C#

namespace BinaryObjectScanner.Models.NewExecutable
{
public static class Constants
{
public static readonly byte[] SignatureBytes = new byte[] { 0x4e, 0x45 };
public const string SignatureString = "NE";
public const ushort SignatureUInt16 = 0x454e;
}
}