Alexandria.Platforms.NintendoDS.RomFormat.IsAscii C# (CSharp) Method

IsAscii() static private method

static private IsAscii ( byte value ) : bool
value byte
return bool
        static bool IsAscii(byte value)
        {
            return value >= 0x20 && value <= 0x7E;
        }