I have 2 ListBoxs that has a collection of items. The number between ListBoxs can be the same or different, if the counter is the same, I want to check if the items between ListBoxs same. Elements can be disordered or ordered, as shown below:
ListBox1 = { "C++", "C#", "Visual Basic" }; ListBox2 = { "C#", "Visual Basic", "C++" };
Please help.
source share