查找列表中元素索引的 C# 程序


设置一个列表并添加元素 −

List<int> val = new List<int>();

// integer elements
val.Add(35);
val.Add(55);
val.Add(68);

假设现在我们需要找到元素 68 的索引。为此,请使用 IndexOf() 方法 −

int index = val.IndexOf(68);

以下是完整的代码 −

示例

 实时演示

using System;
using System.Collections.Generic;
public class Demo {
   public static void Main() {
      List<int> val = new List<int>();
      // integer elements
      val.Add(35);
      val.Add(55);
      val.Add(68);
      // finding the index of element 68
      int index = val.IndexOf(68);
      Console.WriteLine(index);
   }
}

输出

2

更新于: 2020 年 6 月 22 日

817 次浏览

启动您的 职业

通过完成课程获得认证

开始使用
广告