using System.Collections.Generic;
using System.Collections.ObjectModel;
private static readonly Dictionary<string, int> testDict1 = new Dictionary<string, int>
private static ReadOnlyDictionary<string, int> testDict2 = new ReadOnlyDictionary<string, int>(
new Dictionary<string, int>
public static void Main()
testDict2 = new ReadOnlyDictionary<string, int>(
new Dictionary<string, int>