using System;
using System.Collections.Generic;
var persons = new Dictionary<string, string>(){
{"101", "Antony"},
{"102", "Oleg"},
{"103", "Katrine"},
{"104", "Evelina"}
};
Console.WriteLine(persons.ContainsKey("102"));