C#教程

关注公众号 jb51net

关闭
首页 > 软件编程 > C#教程 > C# List

C#中怎么将一个List转换为只读的

作者:

以下是对C#中将一个List转换为只读的实现方法进行了介绍,需要的朋友可以过来参考下
如题,主要使用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);
您可能感兴趣的文章:
阅读全文