当前位置:主页 > 软件编程 > .NET代码 >

C#使用foreach语句搜索数组元素的方法

时间:2021-01-10 11:07:45 | 栏目:.NET代码 | 点击:

本文实例讲述了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!");
 }
}

希望本文所述对大家的C#程序设计有所帮助。

您可能感兴趣的文章:

相关文章