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

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

Clears all bits in the map.
Doesn't necessarily lead to clearing the whole map. Clears the map up to the last bit ever set.
public ClearAll ( ) : void
Результат void
        public void ClearAll()
        {
            Array.Clear(flags, 0, lastDirty + 1);
        }