示例#1
0
        public byte[] ToBytes()
        {
            tmpDataLocBytes = dl.ToByteArray();
            byte[] b = new byte[tmpDataLocBytes.Length + Globals.SaxValuesByteLength];

            System.Buffer.BlockCopy(this.values, 0, b, 0, Globals.SaxValuesByteLength);
            System.Buffer.BlockCopy(tmpDataLocBytes, 0, b, Globals.SaxValuesByteLength, tmpDataLocBytes.Length);
            return(b);
        }