Last active
November 20, 2020 01:41
-
-
Save tyfkda/ebb3f9d9e6d96434bf07 to your computer and use it in GitHub Desktop.
Dictionaryをforeach (C#) ref: http://qiita.com/tyfkda/items/deb069044ad5601638df
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ex. Dictionary<string, string> dic; | |
| foreach (KeyValuePair<string, string> pair in dic) { | |
| Debug.Log(pair.Key + ": " + pair.Value); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment