I
Irfan
hi,
In the simplest form, i have two generic lists and i want to compare if the
elements in each of them exactly match.
list<double> list1 = new list<double>();
list1.AddRange(new double[]{1,2});
list<double> list2 = new list<double>();
list2.AddRange(new double[]{1,2});
list1 == list2 returns false
Can someone point me to the right direction.
TIA
Irfan
In the simplest form, i have two generic lists and i want to compare if the
elements in each of them exactly match.
list<double> list1 = new list<double>();
list1.AddRange(new double[]{1,2});
list<double> list2 = new list<double>();
list2.AddRange(new double[]{1,2});
list1 == list2 returns false
Can someone point me to the right direction.
TIA
Irfan