C#中怎么将一个List转换为只读的
摘要:如题,主要使用AsReadOnly这个方法就可以了复制代码代码如下:Lista=newList{1,2,3,4,5};IListb=a.As...
如题,主要使用AsReadOnly这个方法就可以了
复制代码 代码如下:
List<int> a = new List<int> {1, 2, 3, 4, 5};
IList<int> b = a.AsReadOnly(); // block modification...
IList<int> c = b.AsWritable(); // ... but unblock it again
c.Add(6);
Debug.Assert(a.Count == 6); // we've modified the original
IEnumerable<int> d = a.Select(x => x); // okay, try this...
IList<int> e = d.AsWritable(); // no, can still get round it
e.Add(7);
【C#中怎么将一个List转换为只读的】相关文章:
★ 将字符串转换成System.Drawing.Color类型的方法
上一篇:
利用多线程句柄设置鼠标忙碌状态的实现方法
下一篇:
C# 拓展方法的简单实例