how to coppy a portion of an array in csharp

Code Example - how to coppy a portion of an array in csharp

                
                        Array.Copy(a, 1, b, 0, 3);
/*
a = source array
1 = copy strating index
b = destination array
0 = paste start index
3 = copy length
*/