-
-
Save todorok1/a47bd1fa065dfe924cb775c6a2499b72 to your computer and use it in GitHub Desktop.
C#のDictionaryで値を取得するサンプル
This file contains 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
// 取得したい値に対応するキーを指定します。 | |
string itemName = itemDict[1]; | |
Debug.Log(itemName); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment