Ejemplo n.º 1
0
        public ByteArray /*!*/ lstrip()
        {
            lock (this) {
                List <byte> res = _bytes.LeftStrip();
                if (res == null)
                {
                    return(CopyThis());
                }

                return(new ByteArray(res));
            }
        }