I have created 2 lists with different sets of values. Now i need to compare if the lists contain same values or not. So i need to know how can i compare two lists.
Its like:
List1(1)=Item1.
List1(2)=Item2 and so on. And similarly list2(1)=Item5,
List2(2)=Item6. So now i need to find if list1(1)=list2(1) ans similarly for other values corresponding to each other.
Is it possible to do it.