I am having two arrays. I would like to copy these two arrays items in to new array without using nested loop and without duplicates
I did but that is not giving proper out put.
int[] intArray = new int[5] { 8, 10, 2, 6, 3 };
int[] intArray1=new int[6]{9,1,10,6,5,2};
Nagaraju