System.Text.Utf8.Utf8CodeUnit.IsAscii C# (CSharp) 메소드

IsAscii() 개인적인 메소드

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