Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

c# initialize dictionary

Dictionary<int, string> dictNew = new Dictionary<int,string>()
{
  {1, "true"},
  {2, "false"}
}
 
PREVIOUS NEXT
Tagged: #initialize #dictionary
ADD COMMENT
Topic
Name
6+9 =