List类型 值的互相复制 (深复制)

list<T> A=new list<T>;
list<T> B=new list<T>;
A=B; //浅复制 传递的只是B的指针
A.AddRange(B.ToArray()); //深复制 复制的是具体的值