In the C programming land it is common to use OS functions like memcpy or CopyMemory to efficiently move memory from one place to another. That is far better than using loops because the operating system will use dedicated hardware (DMA) to perform the operation.
I'm not sure if this is useful for your simple case, but it is possible to import these functions from certain DLLs if you want.
[DllImport("kernel32.dll")]
static extern void CopyMemory(IntPtr destination, IntPtr source, uint length);
static void Main(string[] args)
{
byte[] a = new byte[10]{ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 };
byte[] b = new byte[10];
IntPtr pa = Marshal.UnsafeAddrOfPinnedArrayElement(a, 0);
IntPtr pb = Marshal.UnsafeAddrOfPinnedArrayElement(b, 0);
CopyMemory(pb, pa, 10);
}
The CopyMemory function will only work for contiguous memory blocks, so be aware on how you call it.
IMPORTANT EDIT:
If you look the commentaries below you will notice that the piece of code showed above is far from being "usable" because it can corrupt you application memory without you ever knowing about it. A better approach is to use the Buffer.BlockCopy method, as suggested by codesparkle, which probably does same thing internally but in a safe manner:
byte[] a = new byte[10]{ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 };
byte[] b = new byte[10];
Buffer.BlockCopy(a, 0, b, 0, 10);
How can I efficiently assign a common initial value to a large array?" – caesay Sep 22 '12 at 19:49