I have a static multi Dim array:
Properties: array[0..100,0..100] of double;
I would like to write a function where I have to pass this multdim array.
what is the declaration?
Function DisplayProperties(Properties: array of double) // doesn't work
Fucntion DisplayProperties(Properties: array of array of double) // doesn't work too
If anyone would be able to help me out, I'd greatly appreciate it.
Christine