摘要: /// <summary> /// 利用序列化进行对象拷贝,要求对象是序列化的 /// </summary> /// <typeparam name="T">对象类型</typeparam> /// <param name="item">源对象</param> /// <returns>克隆对象</returns> public static T Clone<T>(T item) where T : class { T result = defau 阅读全文
posted @ 2012-07-27 17:03 凌度 阅读(1383) 评论(0) 推荐(0) 编辑