Skip to content

Instantly share code, notes, and snippets.

@tyfkda
Last active November 20, 2020 01:41
Show Gist options
  • Save tyfkda/ebb3f9d9e6d96434bf07 to your computer and use it in GitHub Desktop.
Save tyfkda/ebb3f9d9e6d96434bf07 to your computer and use it in GitHub Desktop.
// 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