I have to increase byte[] array size at runtime.
How to increase byte[] array size at run time ?
|
|
|
Why does no one seem to know Array.Resize:
Simple as pie. PS: as per a comment on MSDN, apparently this was missing from the MSDN documentation in 3.0; this could explain it's popular ignotion |
|||||||||||||||
|
|
You can't: arrays are fixed size.1 Either use a re-sizable collection (eg. 1 Even Array.Resize doesn't modify the passed array object: it creates a new array and copies the elements. It just saves you coding this yourself. The difference is important: other references to the old array will continue to see the old array. |
||||
|
|
|
You could allocate a new array and copy the bytes over with
|
|||||||||
|
|
If you have to increase it, why not start off with a |
|||
|
|
|
A array is of fixed size, and cannot be dynamically changed at runtime. Your only option is to create a new array of the wanted size, and copy all bytes from the old array to the new one. But why torture yourself with this instead of using |
|||
|
|