I am using VS2012, vb.net.
If I have a list of type t, and I wish to copy this to another list, the following code works:
list2.Clear()
list2.AddRange(list1)
However, if the first list of t has another list of type t2 inside it, this above code does not work.
Can I please have some help to copy the contents of a list of t to another list where the list of t has another list of t2 inside it.
Thanks