this snippet of code
Tuple<int,double>[, ,] myArray = new Tuple<int, double> () [xsize, ysize, zsize];
returns this error
Cannot apply indexing with [] to an expression of type 'Tuple'
Where I'm using Tuple structure as defined here.
Thank you for your help and many thanks to this website authors, this site helps me a lot for my day to day work.
Tupledefined in the post you included has three values (Tuple<T, U, W>) and you're only using two. I hope that's not the issue you're having, but I just wanted to point it out.