範圍和重複
Enumerable
上的 Range
和 Repeat
靜態方法可用於生成簡單序列。
範圍
Enumerable.Range()
生成一個給定起始值和計數的整數序列。
// Generate a collection containing the numbers 1-100 ([1, 2, 3, ..., 98, 99, 100])
var range = Enumerable.Range(1,100);
重複
Enumerable.Repeat()
生成一系列重複元素,給定元素和所需的重複次數。
// Generate a collection containing "a", three times (["a","a","a"])
var repeatedValues = Enumerable.Repeat("a", 3);