Now I'm Converting c++ code to c#, and I have some problems related to memcpy, unsigned char*
below is my c++ code
cBin and aBin both are 2D Char array, and others are all integer type
would you guys convert above c++ code to c#?
Thank you
memcpy ( (unsigned char *) cBin + (nYpos + height) * COL_MAX + BIN_RECT.left + width, (unsigned char *) aBin + nYpos * COL_MAX + BIN_RECT.left, nColCnt )