C#のDictionaryでforeach文を回す
// アイテムIDとアイテム名の辞書を作成します。 | |
Dictionary<int, string> itemDict = new Dictionary<int, string>(); | |
// Addメソッドで値を追加します。 | |
itemDict.Add(1, "ポーション"); | |
itemDict.Add(2, "ハイポーション"); | |
itemDict.Add(3, "エーテル"); | |
// KeyValuePairでキーと値のセットを作ります。 | |
foreach (KeyValuePair<int, string> pair in itemDict) | |
{ | |
int itemId = pair.Key; | |
string itemName = pair.Value; | |
Debug.Log(itemId + ": " + itemName); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment