I would like to fill a multi-dimensional array A with values of function f. I am tempted to write
foreach (int[] X in A. GetIndices ()) A .SetValue (X, f (X));But I cannot find anything resembling Array .GetIndices. Please help.
Christopher Yeleighton