Search Results

2
votes

Modifications of arrays passed by reference (C#)

You guessed right, the assignment is modifying the byteData array reference to point to the newly allocated array (because of the 'ref' keyword). The callers of the function will "see" the contents …