Share via


Enumerable.Range(Int32, Int32) Yöntem

Tanım

Belirtilen aralık içinde tam sayı dizisi oluşturur.

public:
 static System::Collections::Generic::IEnumerable<int> ^ Range(int start, int count);
public static System.Collections.Generic.IEnumerable<int> Range (int start, int count);
static member Range : int * int -> seq<int>
Public Function Range (start As Integer, count As Integer) As IEnumerable(Of Integer)

Parametreler

start
Int32

Dizideki ilk tamsayı değeri.

count
Int32

Oluşturulacak sıralı tamsayı sayısı.

Döndürülenler

C IEnumerable<Int32> # dilinde veya IEnumerable(Of Int32) Visual Basic'te sıralı tam sayı aralığı içeren bir.

Özel durumlar

count 0'dan küçüktür.

-veya-

start + count -1, Int32.MaxValue değerinden büyüktür.

Örnekler

Aşağıdaki kod örneği, bir değer dizisi oluşturmak için nasıl kullanılacağını Range gösterir.

// Generate a sequence of integers from 1 to 10
// and then select their squares.
IEnumerable<int> squares = Enumerable.Range(1, 10).Select(x => x * x);

foreach (int num in squares)
{
    Console.WriteLine(num);
}

/*
 This code produces the following output:

 1
 4
 9
 16
 25
 36
 49
 64
 81
 100
*/
' Generate a sequence of integers from 1 to 10
' and project their squares.
Dim squares As IEnumerable(Of Integer) =
Enumerable.Range(1, 10).Select(Function(x) x * x)

Dim output As New System.Text.StringBuilder
For Each num As Integer In squares
    output.AppendLine(num)
Next

' Display the output.
Console.WriteLine(output.ToString())

' This code produces the following output:
'
' 1
' 4
' 9
' 16
' 25
' 36
' 49
' 64
' 81
' 100

Açıklamalar

Bu yöntem ertelenmiş yürütme kullanılarak uygulanır. Anında dönüş değeri, eylemi gerçekleştirmek için gereken tüm bilgileri depolayan bir nesnedir. Bu yöntemle temsil edilen sorgu, doğrudan yöntemini çağırarak GetEnumerator veya C# içinde veya For Each Visual Basic'te kullanarak foreach nesne numaralandırılana kadar yürütülür.

Şunlara uygulanır