范围和重复

Enumerable 上的 RangeRepeat 静态方法可用于生成简单序列。

范围

Enumerable.Range() 生成一个给定起始值和计数的整数序列。

// Generate a collection containing the numbers 1-100 ([1, 2, 3, ..., 98, 99, 100])
var range = Enumerable.Range(1,100);

.NET 小提琴现场演示

重复

Enumerable.Repeat() 生成一系列重复元素,给定元素和所需的重复次数。

// Generate a collection containing "a", three times (["a","a","a"])
var repeatedValues = Enumerable.Repeat("a", 3);

.NET 小提琴现场演示