Be.Windows.Forms.HexBox.GetCopyData C# (CSharp) 메소드

GetCopyData() 개인적인 메소드

private GetCopyData ( ) : byte[]
리턴 byte[]
        byte[] GetCopyData()
        {
            if (!CanCopy()) return new byte[0];

            // put bytes into buffer
            byte[] buffer = new byte[_selectionLength];
            int id = -1;
            for (long i = _bytePos; i < _bytePos + _selectionLength; i++)
            {
                id++;

                buffer[id] = _byteProvider.ReadByte(i);
            }
            return buffer;
        }
        /// <summary>
HexBox