System.Text.Utf8.Utf8CodeUnit.IsAscii C# (CSharp) Method

IsAscii() private method

private IsAscii ( char value ) : bool
value char
return bool
        private static bool IsAscii(char value)
        {
            return value <= UnicodeConstants.AsciiMaxValue;
        }