Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

unity foreach dictionary

foreach(var key in someDictionary.Keys) // loop through keys
foreach(var value in someDictionary.Values) // loop through values
foreach(KeyValuePair<K, V> p in someDictionary) // loop through both
 
PREVIOUS NEXT
Tagged: #unity #foreach #dictionary
ADD COMMENT
Topic
Name
1+7 =