C#中List对象的拷贝

一、List对象中的T是值类型的情况(int 类型等)

List oldList = new List(); 
oldList.Add(..); 
List newList = new List(oldList); 

二、List对象中的T是引用类型的情况(例如自定义的实体类)

1、对于引用类型的List无法用以上方法进行复制,只会复制List中对象的引用,可以用以下扩展方法复制: 

前提是List中的对象要实现ICloneable接口
using System.Linq;

namespace NvcMall.Core
{
    /// 
    /// 普通帮助类
    /// 
    public class CommonHelper
    {   
        public static IList Clone(this IList listToClone) where T : ICloneable
        {
            return listToClone.Select(item => (T)item.Clone()).ToList();
        } 
    }
}

2、另一种用序列化的方式对引用对象完成深拷贝,此种方法最可靠

using System.Linq;

namespace NvcMall.Core
{
    /// 
    /// 普通帮助类
    /// 
    public class CommonHelper
    {  
        /// 
        /// 克隆类对象
        /// 
        /// 
        /// 
        /// 
        public static T Clone(T RealObject)
        { 
            using (Stream objStream = new MemoryStream())
            {
                //利用 System.Runtime.Serialization序列化与反序列化完成引用对象的复制
                IFormatter formatter = new BinaryFormatter();
                formatter.Serialize(objStream, RealObject);
                objStream.Seek(0, SeekOrigin.Begin);
                return (T)formatter.Deserialize(objStream);
            }

        }
        /// 
        /// 克隆对象列表
        /// 
        /// 
        /// 
        /// 
        public static List Clone(List RealObject)
        {  
            using (Stream objStream = new MemoryStream())
            {
                //利用 System.Runtime.Serialization序列化与反序列化完成引用对象的复制
                IFormatter formatter = new BinaryFormatter();
                formatter.Serialize(objStream, RealObject);
                objStream.Seek(0, SeekOrigin.Begin);
                return (List)formatter.Deserialize(objStream);
            }

        }

       
    }
}

类要加[Serializable]
 [Serializable]
 public class 类名


3、利用System.Xml.Serialization来实现序列化与反序列化

 public static T Clone(T RealObject)
        {
            using (Stream stream = new MemoryStream())
            {
                System.Xml.Serialization.XmlSerializer serializer = new System.Xml.Serialization.XmlSerializer(typeof(T));
                serializer.Serialize(stream, RealObject);
                stream.Seek(0, SeekOrigin.Begin);
                return (T)serializer.Deserialize(stream);
            }
        }






二、List对象中的T是引用类型的情况(例如自定义的实体类)

你可能感兴趣的:(DOTNET)