I've got a simple question that my mind is drawing a blank to: I have a Dictionary that looks something like this:
Dictionary<string, Dictionary<string, string>> dict;
As far as I know, dict.Remove() would remove any entry by key, but I need to only remove an item from the innermost dictionary. How would I go about that?
Remove()on that. I.e., get the value specified by the key in the parent dictionary.