find qual values in a dictionary csharp

Code Example - find qual values in a dictionary csharp

                
                        private static void DisplayDictionary(string title, Dictionary<int, string> test)
{
    Console.WriteLine(title);
    foreach (var it in test)
    {
        Console.WriteLine(%%%~COMPRESS~PRE~0~%%%quot;Key: {it.Key}, Value: {it.Value}");
    }
}