Tagged Questions
3
votes
4answers
966 views
What is the fastest way to copy my array?
I'm doing some Wave file handling and have them read from disk into an array of bytes. I want to quickly copy portions from this byte array into another buffer for intermediate processing. Currently ...
1
vote
3answers
179 views
memcpy in C# with different dataType
I am porting a c++ code into c#.There are 2 structures, as explained
below.
// Must be a total of 180 bytes
typedef struct MAINTENANCE_PARAM`
{
BYTE bCommand;
BYTE bSubCommand;
USHORT ...
1
vote
1answer
407 views
What are the implications of performing a shallow copy on an array in order to resize it?
If my understanding of deep and shallow copying is correct my question is an impossible one.
If you have an array (a[10]) and perform a shallow copy (b[20]) wouldn't this be impossible as the data in ...