Skip to content

Instantly share code, notes, and snippets.

@todorok1
Last active November 3, 2020 06:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save todorok1/bd5f4939e4f6b18389557486bee3580d to your computer and use it in GitHub Desktop.
Save todorok1/bd5f4939e4f6b18389557486bee3580d to your computer and use it in GitHub Desktop.
C#のListを使ってforeach文を作るサンプル
// int型のリストを確認します。
List<int> numList = new List<int>(){8, 13, 14, 19, 26, 58};
foreach (int num in numList)
{
// なんらかの処理をするでち。
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment