Initializes the array with the defaultValue.

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

Syntax

C#
public static void Init<T>(
	this T[] array,
	T defaultVaue
)

Parameters

array
Type: array<T>[]()[][]
The array to initialize.
defaultVaue
Type: T
The value to initialize the array with.

Type Parameters

T

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

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