Beispiel #1
0
        public IoBuffer GetBuffer()
        {
            var buf = new ByteBufferAllocator().Allocate(Length);

            buf.AutoExpand = false;
            buf.Put(Symbol);
            buf.Put(Symbol);
            buf.Put(destinationAddr);
            this.Fill(buf);
            buf.Put(ComputeChecksum(buf));
            return(buf);
        }