Replicates the values between startIndex and endIndex.

Namespace: VVVV.Utils
Assembly: VVVV.Utils (in VVVV.Utils.dll) Version: 1.0.4694.10871

Syntax

C#
public static void Replicate<T>(
	this T[] array,
	int startIndex,
	int endIndex,
	int times
)

Parameters

array
Type: array<T>[]()[][]
The array to do the replication on.
startIndex
Type: System..::..Int32
Defines from where to begin the replication.
endIndex
Type: System..::..Int32
Defines where to end the replication.
times
Type: System..::..Int32
Defines the number of replications of the values between startIndex and endIndex.

Type Parameters

T

[Missing <typeparam name="T"/> documentation for "M:VVVV.Utils.ArrayExtensions.Replicate``1(``0[],System.Int32,System.Int32,System.Int32)"]

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type . When you use instance method syntax to call this method, omit the first parameter. For more information, see or .

See Also