📜  LINQ生成运算符

📅  最后修改于: 2021-01-06 05:48:01             🧑  作者: Mango

LINQ生成操作

在LINQ中,生成操作用于创建元素的新序列。在LINQ中,我们提供了另一种类型的生成运算符方法。这些是:

  • 默认值
  • 范围
  • 重复
  • 空的

这些LINQ生成运算符将帮助我们生成新的元素序列。

下表显示了与生成运算符方法有关的更多详细信息。

Method Description
DefaultfEmpty If the collection contains the empty elements, then it will return the default value.
Empty It returns the empty collection of sequences.
Range It returns the collection that contains a sequence of numbers.
Repeat It returns a collection that contains the one repeated value-based on a specified length.