Dictionary
implements IEnumerable>
. For debugging purposes, you can convert dictionary to multiline string using LINQ query:
string description =
string.Join(Environment.NewLine,
dict.Select(tuple => $"{tuple.Key} => {tuple.Value}").ToArray());
Maybe this will be enough for debugging.