using System;
using System.Collections.Generic;
public class Program
{
public static void Main()
KeyValuePair<string, int> bluh = new KeyValuePair<string, int>(null, 1);
Console.WriteLine($"bluh.Key = {bluh.Key}");
}