摘要: //克隆帮助类,可以克隆任意 class 对象 [System.Serializable] public class ClongHelper<T>:ICloneable where T : class { public ClongHelper(T obj) { this.Data = obj; } /// <summary> /// 待克隆的数据 /// </summary> public T Data { set; get; } /// <summary> /// 克隆一个相同的实例 /// </summary> /// <r 阅读全文
posted @ 2012-08-20 10:37 草青工作室 阅读(274) 评论(0) 推荐(0) 编辑