Search Results for

    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

    Action<int[]> action

    The specified action on each element of source, with element's indices as the parameters

    In This Article