C#程序查找数组中的最后一个匹配元素

若要查找最后一个匹配的元素,请使用Array.LastIndexOf方法。如果该元素不存在于整数数组中,则返回-1。

以下是数组-

int[] val = { 97, 45, 76, 21, 89, 45 };

现在,假设您需要搜索元素45的最后一个Index。为此,请使用Array.LastIndexOf()方法-

int res = Array.LastIndexOf(val, 45);

以下是一个例子-

示例

using System;
using System.Text;
public class Demo {
   public static void Main() {
      int[] val = { 97, 45, 76, 21, 89, 45 };
      //元素45的最后一个索引
      int res = Array.LastIndexOf(val, 45);
      //显示索引
      Console.WriteLine("Index of element 45 is = "+res);
   }
}

输出结果

Index of element 45 is = 5