System.Text.Utf8.Utf8CodeUnit.Equals C# (CSharp) Méthode

Equals() public méthode

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