using System.Collections.Concurrent;
public static void Main()
Console.WriteLine("Hello World");
ConcurrentDictionary<String, String> context = new ConcurrentDictionary<String, String>();
context.AddOrUpdate("1", "3", (key, oldValue) => "3" );
context.AddOrUpdate("2", "3", (key, oldValue) => "3" );
foreach (var display in context)
t += " : " + display.Value;
t.Substring(t.LastIndexOf(","));