Hello
I've the following code
DataView dvTest= dsTest.Tables[1].Copy().DefaultView;
Will the copy of the (huge) dataset dsTest be persisted in the memory or will it be Garbage Collected by default?
Does it copy the whole dataset to the memory? When the GC happens?
Regards
NLV