Files
BinaryObjectScanner/BinaryObjectScanner.Models/NewExecutable/Constants.cs

11 lines
290 B
C#
Raw Normal View History

2023-03-07 16:59:14 -05:00
namespace BinaryObjectScanner.Models.NewExecutable
2022-12-28 14:26:12 -08:00
{
public static class Constants
{
public static readonly byte[] SignatureBytes = new byte[] { 0x4e, 0x45 };
public const string SignatureString = "NE";
public const ushort SignatureUInt16 = 0x454e;
}
}