Method IndexForEach
IndexForEach(Array, Action<int[]>)
Perform the specified action on each element of the Array
Declaration
public static void IndexForEach(this Array source, Action<int[]> action)
Parameters
Type | Name | Description |
---|---|---|
Array | source | Tye Array whose element will be handled by |
Action<int[]> | action | The specified action on each element of |