I was just wondering what do you guys think would be the best c# data structure for problem like this.
So I will have an array of keys, and for each key array of arrays. Sounds complicated does it :)
Anyway the simplest solution that comes to my mind, note that I never did any formal c# training. It was more I am C++ programmer and then for some stupid project did C# application. Therefore I might have missed out on a good structure I could use.
So
Dictionary<string, List<Dictionary<string, double>>is what I had in mind. But is there anything better?
I will have set of data points for each key, but more than one set of data points.
So I was just wondering if anyone has better design suggestion.
Cheers