using System.Collections.Generic;
public static void Main()
Dictionary<string, string> iller = new Dictionary<string, string>()
string illerAdi = "Ankara";
var plakaKodu = iller.FirstOrDefault(x => x.Value == illerAdi).Key;
Console.WriteLine(plakaKodu);