ReadOnlyCollection类型是.NET系统类库提供的一个只读集合类型,它与原来的List<string>不存在任何类型转换关系,因此可以从根本上阻止外部对其的修改操作using System.Collections.ObjectModel;//只读集合命名空间 public List<string> members = null; public ReadOnlyCollection<string> Members { get { return members.AsReadOnly(); } }
时间: 2024-11-15 08:10:02