I have some c++ code that I am converting to C#. What I need to convert is
the following:
memcpy(&tmpshor t, (pTmpDataIn+1), 2);
This should copy two bytes of an char* to an int which then gets used
elsewhere. I am having trouble coming up with how to approach.
Thanks,
~ Steve
the following:
memcpy(&tmpshor t, (pTmpDataIn+1), 2);
This should copy two bytes of an char* to an int which then gets used
elsewhere. I am having trouble coming up with how to approach.
Thanks,
~ Steve
Comment