Given the following: byte[] sData; and a function declared as private byte[] construct_command()
if I were to then assign the resul
sData will point to the contents of what's returned from the function. Arrays in C# are reference types, which means that assigning one array from another simply copies the reference rather than allocating new data.