C# 程式設計/關鍵字/foreach
外觀
< C Sharp 程式設計 | 關鍵字
foreach 關鍵字標識一個foreach 迴圈。
// example of foreach to iterate over an array
public static void Main() {
int[] scores = new int [] { 54, 78, 34, 88, 98, 12 };
int total = 0;
foreach (int score in scores) {
total += score;
}
int averageScore = total/scores.Length;
}
| C# 關鍵字 | |||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| C# 特殊識別符號(上下文關鍵字) | |||||||||||||||
| |||||||||||||||
| 上下文關鍵字(用於查詢) | |||||||||||||||
|