Pchp.Library.CharMap.Contains C# (CSharp) Метод

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

Retrieves whether a character belongs to the set.
is not mapped by this instance.
public Contains ( char c ) : bool
c char The character to be tested.
Результат bool
        public bool Contains(char c)
        {
            int div = c >> 5;
            return div <= lastDirty && (flags[div] & (0x80000000U >> (c & 0x1f))) != 0;
        }