You have probably developed how to get a double array, but may have some problems returning them - here are examples of both:
double[] myDoubleArray = new double[] { 1.0, 1.2, 1.3, 1.4}; Session["DoubleList"] = myDoubleArray; double[] sessionDoubles = (double[])Session["DoubleList"];
Fenton
source share