I have 2 ListBoxs
which has a set of items. The count between each ListBoxs
can be same or different, if the count is same, I want to check if items between the ListBoxs
are same. The items can be disordered or ordered as shown below:
ListBox1 = { "C++", "C#", "Visual Basic" };
ListBox2 = { "C#", "Visual Basic", "C++" };
Kindly help.