mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-11 05:35:15 +00:00
11 lines
282 B
C#
11 lines
282 B
C#
namespace BinaryObjectScanner.Models.MSDOS
|
|
{
|
|
public static class Constants
|
|
{
|
|
public static readonly byte[] SignatureBytes = new byte[] { 0x4d, 0x5a };
|
|
|
|
public const string SignatureString = "MZ";
|
|
|
|
public const ushort SignatureUInt16 = 0x5a4d;
|
|
}
|
|
} |