System.Text.Utf8.Utf8CodeUnit.Equals C# (CSharp) Метод

Equals() публичный Метод

public Equals ( char other ) : bool
other char
Результат bool
        public bool Equals(char other)
        {
            return IsAscii(other) && unchecked((uint)Value == (uint)other);
        }