G
Guest
Hello. How I can copy one byte array to other byte array?
For example I have
byte[] array1 = new byte[500];
byte[] array2 = new byte[100];
in array1 I have useful data from position 55 to 105 and I need copy those
bytes to array2 on position from 15 to 65.
How to do this? There are should be some function which work like "copy"
function in C++.
For example I have
byte[] array1 = new byte[500];
byte[] array2 = new byte[100];
in array1 I have useful data from position 55 to 105 and I need copy those
bytes to array2 on position from 15 to 65.
How to do this? There are should be some function which work like "copy"
function in C++.