I am trying to use a dll in a c# windows application. this dll is expecting one double[][] parameter( more than 10000 values) and another double[] parameter.
public static double[] CalcResults(double[][] Positions, double[] Values)
I am not quite sure how to declare this variable in the c# class. Appreciate your help.