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------
Code:
for (int j = 0; j < a1.Count;j++ )
            {
                for (int i = 0; i < a2.Count; i++)
                {
                    if
                    ((a1[j])==(a2[i]))
                    {
                           return something................}
}
}
please help me find a solution
thanks in advance
lamiajoyee