Thursday 27 October 2016

copy array

 // Array.Copy(a, 1, b, 0, 3);
                            // a = source array
                            //1 = start index in source array
                            //b = destination array
                            //0 = start index in destination array
                            //3 = elements to copy