How can I apply indexer to Dictionary VALUES (C#3.0)
- by Newbie
I have done a program
string[] arrExposureValues = stock.ExposureCollection[dt]
.Values.ToArray();
for(int i=0;i<arrExposureValues .length;i++)
Console.WriteLine(arrExposureValues[i]);
Nothing wrong and works fine.
But is it possible to do something like the below
for(int i=0;i<stock.ExposureCollection[dt].Count;i++)
Console.WriteLine(stock.ExposureCollection[dt].Values[i]);
This is just for my sake of knowledge (Basically trying to accomplish the same in one line).
Note: ExposureCollection is a dictionary object Dictionary<DateTime, Dictionary<string, string>>
First of all I have the doubt if it is at all possible!
I am using C#3.0.
Thanks.