using System;
using System.Collections.Generic;
public class Program
{
public static void Main()
Dictionary<string, string> items = new();
items["foo"] = "bar";
Console.WriteLine(items["foo"]);
items["foo"] = "updated";
}