Proper way to initialize a C# dictionary with values?

前端 未结 6 1583
感情败类
感情败类 2020-11-29 15:49

I am creating a dictionary in a C# file with the following code:

private readonly Dictionary FILE_TYPE_DICT
        = new Dictiona         


        
6条回答
  •  猫巷女王i
    2020-11-29 16:18

    With С# 6.0

    var myDict = new Dictionary
    {
        ["Key1"] = "Value1",
        ["Key2"] = "Value2"
    };
    

提交回复
热议问题