I am creating a dictionary in a C# file with the following code:
private readonly Dictionary FILE_TYPE_DICT = new Dictiona
With С# 6.0
var myDict = new Dictionary { ["Key1"] = "Value1", ["Key2"] = "Value2" };