The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.
Enumerable::Repeat<TResult> Method (TResult, Int32)
.NET Framework (current version)
Generates a sequence that contains one repeated value.
Assembly: System.Core (in System.Core.dll)
public: generic<typename TResult> static IEnumerable<TResult>^ Repeat( TResult element, int count )
Parameters
- element
-
Type:
TResult
The value to be repeated.
- count
-
Type:
System::Int32
The number of times to repeat the value in the generated sequence.
Return Value
Type: System.Collections.Generic::IEnumerable<TResult>^An IEnumerable<T> that contains a repeated value.
Type Parameters
- TResult
The type of the value to be repeated in the result sequence.
| Exception | Condition |
|---|---|
| ArgumentOutOfRangeException | count is less than 0. |
This method is implemented by using deferred execution. The immediate return value is an object that stores all the information that is required to perform the action. The query represented by this method is not executed until the object is enumerated either by calling its GetEnumerator method directly or by using foreach in Visual C# or For Each in Visual Basic.
Universal Windows Platform
Available since 8
.NET Framework
Available since 3.5
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1
Available since 8
.NET Framework
Available since 3.5
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1
Show: