Answers for "dctionary literal c#"

C#
0

dctionary literal c#

var data = new Dictionary<string, string>
{
    { "test", "val" }, 
    { "test2", "val2" }
};
Posted by: Guest on October-16-2020

C# Answers by Framework

Browse Popular Code Answers by Language