Method Fill
Fill<T>(T[], T)
Assigns the given value of type T to each element of the specified array.
public static void Fill<T>(T[] array, T value)
Parameters
arrayT[]The array to be filled.
valueTThe value to assign to each array element.
Type Parameters
TThe type of the elements in the array.