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

IsAsciiOrNul() static private method

static private IsAsciiOrNul ( byte value ) : bool
value byte
return bool
        static bool IsAsciiOrNul(byte value)
        {
            return value == 0 || IsAscii(value);
        }