- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要使用 IReadOnlyList<T>
作为返回参数,因为它最符合我的需要,但正如您在下面的示例中看到的,如果它不是真正只读的,您仍然可以修改它包装的列表。
using System.Collections.Generic;
using System.Collections.Immutable;
public class Test
{
public Test()
{
// return an IReadOnlyList that wraps a List, we can modify content
var list1 = GetList1();
if (list1 is List<Section> sections1) // can be true
{
sections1.Clear();
}
// return an IReadOnlyList that wraps an ImmutableArray, we cannot modify content
var list2 = GetList2();
if (list2 is List<Section> sections2) // never true
{
sections2.Clear();
}
}
public static IReadOnlyList<Section> GetList1()
{
return new List<Section> {new Section()};
}
public static IReadOnlyList<Section> GetList2()
{
return ImmutableArray.Create(new Section());
}
}
public struct Section
{
}
问题:
ImmutableArray<T>
看起来很棒,因为它是真正只读的,唯一的事情是我不想/不需要公开返回 fully-featured class允许生成副本的更改。
因此我坚持返回IReadOnlyList<T>
因为它的意图很简单,但我需要修复可能修改的列表问题。
问题:
正在返回 ImmutableArray<T>
作为IReadOnlyList<T>
是正确的方法吗?
如果没有,那么您能建议怎么做吗?
最佳答案
这不是怎么来的IReadOnlyList
作品
The
IReadOnlyList<T>
represents a list in which the number and order of list elements is read-only. The content of list elements is not guaranteed to be read-only.
如果你想要一个 Immutable
Collection
查看
System.Collections.Immutable Namespace
The System.Collections.Immutable namespace contains interfaces and classes that define immutable collections.
关于c# - 如何防止更改 IReadOnlyList<T>?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54703022/
我有一个带有此 Controller 操作方法的 ASP.NET Core 3.1 项目: [HttpGet("{param1:long}", Name = "GetData")] [Produces
我试图理解为什么 C# 中有关变体和泛型的特定行为无法编译。 class Matrix where TLine : ILine { TLine[] _lines; IReadOnlyL
我需要使用 IReadOnlyList作为返回参数,因为它最符合我的需要,但正如您在下面的示例中看到的,如果它不是真正只读的,您仍然可以修改它包装的列表。 using System.Collectio
如何创建 IReadOnlyList有一些值(value)吗? 我找到了 ReadOnlyCollection 的例子这似乎将现有集合转换为 ReadOnlyCollection但这种方法没有奏效。
我将属性类型从 List 更改为至 IReadOnlyList ,但我使用的是 List.Find()方法,现在编译器给出 error CS1061: 'IReadOnlyList' does not
属性的属性是 IReadOnlyList 是什么意思但它有一个二传手?我的困惑是,如果 List 是只读的,那么为什么我们需要 setter? public IReadOnlyList Filtere
我希望能够做这样的事情来建立一个网格数据结构。 IReadOnlyList points; IReadOnlyList> triangles; 其中三角形是点列表中的索引。给定一个索引三角形 ''ti
以下三种方法是否具有等效的垃圾回收行为? #1 有点牵强,但今天的 C# 编译器是否足够聪明,可以在每次调用方法时优化#2 中的对象创建?我特别不想在方法之外提升数组初始化。 public B
我读过这个问题:IEnumerable vs IReadonlyCollection vs ReadonlyCollection for exposing a list member这个问题:Read
如果我有一个方法需要一个参数, 有一个 Count属性(property) 有一个整数索引器(只获取) 这个参数的类型应该是什么?我会选择 IList在 .NET 4.5 之前,因为没有其他可索引的集
当 IReadOnlyList是在 .NET 4.5 中引入的,有那么一刻我认为拼图的缺失部分终于被插入到位:一种传递真正的只读可索引接口(interface)的方法,以前我必须使用我自己的只读接口(
我问是因为我认为 C# 要求在类中实现所有接口(interface)。使用 ILSpy,我发现 IReadOnlyList.this[int index] 索引器实现不在类列表中。 这是经过编辑的类声
当 IReadOnlyList是在 .NET 4.5 中引入的,有那么一刻我认为拼图的缺失部分终于被插入到位:一种传递真正的只读可索引接口(interface)的方法,以前我必须使用我自己的只读接口(
我想知道当两者都ReadOnlySpan时是否有任何界面、模式或其他什么东西和 IReadOnlyList (以及更通用的接口(interface)),并且您希望避免无用的分配 . 考虑使用 IEnu
这个问题已经有答案了: FromBluetoothAddressAsync IAsyncOperation does not contain a definition for 'GetAwaiter'
我有一个方法,我想在我的解决方案中获取所有类似列表的对象。在 .NET 4.5 之前,这很简单: public static T Method(IList list) { // elided
这个问题在这里已经有了答案: Why does List implement IReadOnlyList in .NET 4.5? (7 个答案) 关闭 8 年前。 为什么 List工具 IRead
我了解到,在处理集合时,protobuf-net 需要 GetEnumerator 进行序列化,需要一个带有 Add 的类型进行反序列化。 对于没有Add 的类型,您可以设置在反序列化之前执行的继承类
为什么List实现IReadOnlyList在.NET 4.5 中? List不是只读的... 最佳答案 因为List实现所有必要的方法/属性/等。 (然后是一些)IReadOnlyList 。接口(
我是一名优秀的程序员,十分优秀!