I'm creating a dictionary in the controller but the values of the key value pair are created dynamically. How do I populate the dictionary?
Dictionary<int, string> Menu = new Dictionary<int, string>();
Menu.Add (id, "outcome"); id and outcome are dynamically generated depending on the record.
Go to the complete details ...