Hashtable in a Hashtable in C#

  • Thread starter Thread starter Krish
  • Start date Start date
K

Krish

I would like to have the value entry in the Hashtable to be a
Hashtable itself and the value data in the second hashtable to be an
ArrayList.


I would like to store the following type of data

date : time : open high low close
...
....

I have intra day stock data.

I would like to query all dates, then for each date all times, then
for each date and time get the open/h/low/close values.

Any help greatly appreciated.

reagrds
 
Krish,

You could do this, but I think that you might want to use a DataTable
sorted on date and time to store this information. Why use the Hashtable?
It would be much easier to work with the DataTable, IMO.
 
Back
Top