can anyone help me with follwing issue:
StoredList s1 = new SortedList();
StoredList s2 = new SortedList();
s1.Add(1, "a");
s1.Add(2, "b");
s2.Add(1, "a");
s2.Add(2, "b");
s1.Equals(s2);
how can i use properly s1.Equals(s2);
even if i properly orverride Equals it always return false.
if i put code into some other method and test for euality it behave properly.



LinkBack URL
About LinkBacks



CornedBee