Table of Contents

Method Fill

Namespace
Alternet.Skia
Assembly
Alternet.UI.Common.dll

Fill<T>(T[], T)

Sets all elements in the specified array to the specified value.

public static void Fill<T>(this T[] array, T value)

Parameters

array T[]

The array whose elements will be set. Cannot be null.

value T

The value to assign to each element of the array.

Type Parameters

T

The type of the elements in the array.

Exceptions

ArgumentNullException

Thrown if array is null.