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

Equals() public method

public Equals ( char other ) : bool
other char
return bool
        public bool Equals(char other)
        {
            return IsAscii(other) && unchecked((uint)Value == (uint)other);
        }