> 지정된 인덱스 요소를 반환.
public class Example
{
public static void Main()
{
Console.Write("<< Enumerable.ElementAt 출력 예제 >> \n");
string[] names = { "CodeZero", "CodeOne", "CodeTwo", "CodeThree"};
string name = names.ElementAt(1);
Console.WriteLine("The name chosen is '{0}'.", name);
Console.WriteLine(System.Environment.NewLine);
Console.WriteLine("Press any key to exit");
Console.ReadKey();
}
}