C#Linq ElementAt方法

ElementAt()C#中获取指定索引位置元素的方法。

首先,设置字符串数组。

string[] str = { "Jack", "Pat", "David"};

现在,要使元素处于特定索引处,请使用ElementAt()以下示例中所示的方法-

示例

using System.IO;
using System;
using System.Linq;
class Program {
   static void Main() {
      string[] str = { "Jack", "Pat", "David"};
      Random r = new Random(DateTime.Now.Second);
      //生成随机字符串
      string res = str.AsQueryable().ElementAt(r.Next(0, str.Length));
      Console.WriteLine("Random Name = '{0}'", res);
   }
}

输出结果

Random Name = 'Jack'