Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

init dictionary c#

Dictionary<int,string> dict = new Dictionary<int, string>();
dict.Add(1, "Mohan");
dict.Add(2, "Kishor");
dict.Add(3, "Pankaj");
dict.Add(4, "Jeetu");
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #init #dictionary
ADD COMMENT
Topic
Name
1+1 =