J Jon Skeet [C# MVP] Oct 8, 2005 #2 Nils Wolf said: how do i convert an integer array to a byte array?? Click to expand... The easiest way is probably to call Buffer.BlockCopy.
Nils Wolf said: how do i convert an integer array to a byte array?? Click to expand... The easiest way is probably to call Buffer.BlockCopy.
N Nils Wolf Oct 8, 2005 #3 thx, it works.. Jon Skeet said: The easiest way is probably to call Buffer.BlockCopy. Click to expand...
thx, it works.. Jon Skeet said: The easiest way is probably to call Buffer.BlockCopy. Click to expand...
P Peter Rilling Oct 8, 2005 #4 Also, what about Convert.ToByte? Nils Wolf said: thx, it works.. Click to expand...
J Jon Skeet [C# MVP] Oct 8, 2005 #5 Peter Rilling said: Also, what about Convert.ToByte? Click to expand... That converts a single integer to a single byte at a time, whereas I expected that Nils wanted to convert each integer to 4 bytes.
Peter Rilling said: Also, what about Convert.ToByte? Click to expand... That converts a single integer to a single byte at a time, whereas I expected that Nils wanted to convert each integer to 4 bytes.