hello there! I've got two arraylists named a1 and a2. I need to check if these two arraylists have the same contents. All I can think of is this------
please help me find a solutionCode:for (int j = 0; j < a1.Count;j++ ) { for (int i = 0; i < a2.Count; i++) { if ((a1[j])==(a2[i])) { return something................} } }
thanks in advance
lamiajoyee




Reply With Quote