How can I create a dictionary containing ints as keys and arrays as Values. Here is what I have tried on dotnetfiddle.net with no luck:
Dictionary<int, double[]> dict;
double[] prices = new double[20];
dict = new Dictionary<int, prices>();
Dictionary<int, double[]> dict;
dict = new Dictionary<int, new double[20]>();
Dictionary<int, double[]> dict;
dict = new Dictionary<int, double[20]>();
Dictionary<int, double[]> dict = new Dictionary<int, double[]>();?