I need to fetch data from nested Dictionary IN C#. My Dictionary is like this:
static Dictionary<string, Dictionary<ulong, string>> allOffset =
new Dictionary<string, Dictionary<ulong, string>>();
I need to fetch all keys/values of the full dictionary, represented like so:
string->>ulong, string
Thanks in advance.