c#中foreach的用法
时间: 2023-09-02 21:11:44 浏览: 53
C# Foreach用法
在 C# 中,foreach 语句可以用于遍历数组、集合和其他实现了 IEnumerable 或 IEnumerable<T> 接口的类型。
具体语法如下:
```
foreach (var item in collection)
{
// 执行代码
}
```
其中,`item` 是集合中的每个元素,`collection` 是要遍历的集合。
例如,遍历一个数组:
```
int[] numbers = { 1, 2, 3, 4, 5 };
foreach (int i in numbers)
{
Console.WriteLine(i);
}
```
输出结果为:
```
1
2
3
4
5
```
遍历一个 List:
```
List<string> names = new List<string> { "Alice", "Bob", "Charlie" };
foreach (string name in names)
{
Console.WriteLine(name);
}
```
输出结果为:
```
Alice
Bob
Charlie
```
阅读全文