c#中foreach语句搜索数组元素的例子

发布时间:2020-12-02编辑:脚本学堂
c#中搜索数组元组的方法很多,这里介绍使用foreach语句搜索数组元素的方法,使用foreach语句遍历数组元素,对元素进行逐个比较以查找数组中的元素。

c#使用foreach语句搜索数组元素

通过foreach语句对数组遍历,对元素进行逐个比较以查找数组中的元素。

例子:
 

复制代码 代码示例:
using System;
public class Search {
 public static void Main() {
  int[] nums = new int[10];
  int val;
  bool found = false;
  // give nums some values
  for(int i = 0; i < 10; i++)
   nums[i] = i;
  val = 5;
  // 通过foreach语句在nums数组中查找指定元素
  foreach(int x in nums) {
   if(x == val) {
    found = true;
    break;
   }
  }
  if(found)
   Console.WriteLine("Value found!");
 }
}