What is the simplest way to set one array equal to another without linking them

int[] a = { 10, 10 };
int[] b = a.clone();
2 Likes