To explain: I have array of ints as input. I need to convert it to array of bytes, where 1 int = 4 bytes (big endian). In C++, I can easily just cast it and then access to the field as if it was byte array, without copying or counting the data - just direct access. Is this possible in C#? And in C# 2.0?
|
|
Yes, using unsafe code:
If the compiler complains, add a
|
|||||
|
|
Have a look at the BitConverter class. You could iterate through the array of |
|||||||||||
|
|
You can create a byte[] 4 times the size of your int[] lenght. Then, you iterate trough your integer array & get the byte array from:
Next you copy the 4 bytes from this function to the correct offset (i * 4) using Buffer.BlockCopy. |
|||
|
|
|
If you write unsafe code, you can fix the array in memory, get a pointer to its beginning, and cast that pointer.
An array in .net is prefixed with the number of elements, so you can't safely convert between There is also a union based trick to reinterpret cast references, but I strongly recommend not using it. The usual way to get individual integers from a byte array in native-endian order is One way to manually convert assuming little-endian (managed about 400 million reads per second on my 2.6GHz i3):
I recommend manually writing code that uses bitshifting to access individual bytes if you want to go with managed code, and pointers if you want the last bit of performance. You also need to be careful about endianness issues. Some of these methods only support native endianness. |
||||
|
|
The simplest way in type-safe managed code is to use:
That doesn't quite do what I think your question asked, since on little endian architectures (like x86 or ARM), the result array will end up being little endian, but I'm pretty sure the same is true for C++ as well. If you can use
|
|||||||
|