A
AMP
Hello,
I have the following code:
background:
const int MAX_DATA_BYTES=250;
byte[] blkin =new byte[MAX_DATA_BYTES]; /* Receive buffer */
and I use it in the following:
memmove(blkout[1], blkout[0], len);
but i get the following error:
Cannot apply indexing with [] to an expression of type 'byte'
What am i doing wrong?
Thanks
mike
I have the following code:
background:
const int MAX_DATA_BYTES=250;
byte[] blkin =new byte[MAX_DATA_BYTES]; /* Receive buffer */
and I use it in the following:
memmove(blkout[1], blkout[0], len);
but i get the following error:
Cannot apply indexing with [] to an expression of type 'byte'
What am i doing wrong?
Thanks
mike