Answers for "c# inline initialize dictionary"

C#
8

c# inline initialize dictionary

var testDict = new Dictionary<string, string>() { ["key1"] = "value1", ["key2"] = "value2" };
Posted by: Guest on February-18-2020

C# Answers by Framework

Browse Popular Code Answers by Language