hi,
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.