1
Reply

How do you traverse through Dictionary<List<Employee>, string>?

    foreach(KeyValuePair entry in Dictionary)
    {
    // do something with entry.Value or entry.Key
    }