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, int, int, Func<int, int, int, T>)Declarationpublic static T[][][] NewArray<T>(
int size1,
int size2,
int size3,
Func<int, int, int, T> initialiser = null
) Summary
Instantiates a fully-initialized "rectangular" jagged array with the specified dimensions. Generic type parametersT |
Type of the array element. |
Parametersint | size1 |
Size of the first dimension. | int | size2 |
Size of the second dimension. | int | size3 |
Size of the third dimension. | Func<int, int, int, T> | initialiser |
Optional function to initialise the value of every element. |
|