I need to fetch data from nested Dictionary IN C#. My Dictionary is like this:
static Dictionary&
What about this, the method will enumerate through all dictionary items...
public static IEnumerable> GetValues() { foreach (var pair in allOffset.Values) { foreach (var value in pair) { yield return value; } } }