C
Curious
If I have the following code:
List<DataRow> trsTrades = selected.ToList();
What does ToList do? Does it copy all of the items in trsTrades, or
does it create a list containing just pointers (to their corresponding
items in the original list, trsTrades)?
Thanks,
List<DataRow> trsTrades = selected.ToList();
What does ToList do? Does it copy all of the items in trsTrades, or
does it create a list containing just pointers (to their corresponding
items in the original list, trsTrades)?
Thanks,