I have 3 byte arrays in C# that I need to combine into one. What would be the most efficient method to complete this task?
feedback
|
|
For primitive types (including bytes), use I timed each of the suggested methods in a loop executed 1 million times using 3 arrays of 10 bytes each. Here are the results:
I increased the size of each array to 100 elements and re-ran the test:
I increased the size of each array to 1000 elements and re-ran the test:
Finally, I increased the size of each array to 1 million elements and re-ran the test, executing each loop only 4000 times:
So, if you need a new byte array, use
But, if you can use an
If you have an arbitrary number of arrays and are using .NET 3.5, you can make the
EDIT: To Jon Skeet's point regarding iteration of the subsequent data structures (byte array vs. IEnumerable), I re-ran the last timing test (1 million elements, 4000 iterations), adding a loop that iterated over the full array with each pass:
The point is, it is VERY important to understand the efficiency of both the creation and the usage of the resulting data structure. Simply focusing on the efficiency of the creation may overlook the inefficiency associated with the usage. Kudos, Jon. | |||||||||||||
feedback
|
|
If you simply need a new byte array, then use the following:
Alternatively, if you just need a single IEnumerable, consider using the C# 2.0 yield operator:
| |||||
feedback
|
|
Many of the answers seem to me to be ignoring the stated requirements:
These two together rule out a LINQ sequence of bytes - anything with If those aren't the real requirements of course, LINQ could be a perfectly good solution (or the (EDIT: I've just had another thought. There's a big semantic difference between making a copy of the arrays and reading them lazily. Consider what happens if you change the data in one of the "source" arrays after calling the Here are my proposed methods - which are very similar to those contained in some of the other answers, certainly :)
Of course the "params" version requires creating an array of the byte arrays first, which introduces extra inefficiency. | |||||||||||||
feedback
|
|
To add to the response where one might need an
| ||||
|
feedback
|
|
The memorystream class does this job pretty nicely for me. I couldn't get the buffer class to run as fast as memorystream.
| |||||
feedback
|
|
On the contrary to Andrew - I could not get MemoryStream to work as fast as Buffer class - it was always ~1.5 slower. | |||
|
feedback
|
| |||
|
feedback
|
|
Concat is the right answer, but for some reason a handrolled thing is getting the most votes. If you like that answer, perhaps you'd like this more general solution even more:
which would let you do things like:
| |||
feedback
|