If I have:
List<string> myList1;
List<string> myList2;
int placeToCheckValues = 0; //Used for breakpoints since the values don't get updated until after the line is executed
myList1 = getMeAList();
placeToCheckValues = 0; //Checked myList1 here, it contains 4 strings
myList2 = getMeAnotherList();
placeToCheckValues = 0; //Checked myList2 here, it contains 6 strings
myList1.Concat(myList2);
placeToCheckValues = 0; //Checked mylist1 again, it contains 4 strings... why?
I ran code similar to this in Visual Studio 2008 and set break points after each execution. After myList1 = getMeAList();
, myList1
contains 4 strings-> I pressed the plus button to make sure they weren't all nulls. After myList2 = getMeAnotherList();
, myList2
contains 6 strings-> I checked to make sure they weren't null... After myList1.Concat(myList2);
myList1 contained only 4 strings. Why is that?
Thanks,
Matt