Diff<>(old, new, comparer, predicate, postProcessor) NewArray<>(size1, size2, size3, initialiser) RunMain(main, onUnhandledMain, onUnhandledThread) RunMain(main, onUnhandledMain, onUnhandledThread)
Legend Class Struct Enum Interface Delegate | Constructor Method Property Event Field |
| Static method: T[] NewArray<T>(int, Func<int, T>)Declarationpublic static T[] NewArray<T>(
int size,
Func<int, T> initialiser
) Summary
Instantiates a fully-initialized array with the specified dimensions. Generic type parametersT |
Type of the array element. |
Parametersint | size |
Size of the first dimension. | Func<int, T> | initialiser |
Function to initialise the value of every element. |
|