示例#1
0
        public ByteArray /*!*/ rstrip()
        {
            lock (this) {
                List <byte> res = _bytes.RightStrip();
                if (res == null)
                {
                    return(CopyThis());
                }

                return(new ByteArray(res));
            }
        }