Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

enumerate dictionary c#

Dictionary<int, string> dict = new Dictionary<int, string>();
foreach (KeyValuePair<int, string> kvp in dict)
{
  int key = kvp.Key;
  string value = kvp.Value;
}
 
PREVIOUS NEXT
Tagged: #enumerate #dictionary
ADD COMMENT
Topic
Name
2+8 =