using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace RomCheater { public static class MemorySizeConstants { public const int MinimumAddress = 0x00000000; public const int MaximumAddress = int.MaxValue - 0x38; // any more than this, for byte arrays, causes out of memory exceptions) } }