随笔分类 - 开发 / C# / 集合
摘要:深拷贝与浅拷贝(shallow copy)的区别在于,深拷贝不仅复制对象的引用,还复制对象本身及其包含的所有子对象。 using System; using System.IO; using System.Runtime.Serialization; using System.Runtime.Ser
阅读全文
摘要:在C#中,常用的集合主要在:System.Collections和System.Collections.Generic命名空间中。 一.System.Collections.Generic List<T> 可以动态调整大小的数组,提供添加、插入、删除、搜索等方法的集合。 LinkedList<T>
阅读全文