Link to home
Start Free TrialLog in
Avatar of skij
skijFlag for Canada

asked on

ASP.NET / C# : Multidimensional Dictionary or Equivalent

Using ASP.NET/C#, how can I form a multidimensional dictionary or something that is equivalent?

Here is an example of the structure I need:
Basket1 =>
  "USDCAD" = "Buy",
  "EURUSD" = "Sell",
  "USDCHF" = "Buy"
Basket2 =>
  "USDCAD" = "Sell",
  "AUDCAD" = "Sell",
  "CADJPY" = "Buy",
  "CADCHF" = "Buy"
Basket3 =>
  "EURUSD" = "Buy"

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of kaufmed
kaufmed
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial