Copying array in C#

Forums:

int[] numbers1 = { 1, 2, 3, 4, 5 };
int[] numbers2 = new int[5];
numbers1.CopyTo(numbers2, 0);