Answers for "auto initiate dictionary c#"

C#
20

c# initialize dictionary

Dictionary<int, string> dictNew = new Dictionary<int,string>()
{
  {1, "true"},
  {2, "false"}
}
Posted by: Guest on May-07-2020

C# Answers by Framework

Browse Popular Code Answers by Language