17
1
using System;
2
using System.Collections.Generic;
3
using System.Linq; //Esta línea agrega el método "First" a las colecciones.
4
5
public class Program
6
{
7
public static void Main()
8
{
9
List<string> allTexts = new List<string>();
10
allTexts.Add("Energy");
11
allTexts.Add("Life");
12
allTexts.Add("Hero");
13
allTexts.Add("Powerup");
14
15
Console.WriteLine(allTexts.First());
16
}
17
}
Cached Result
50
45
40
35
30
25
20
15
10
5
0
45
40
35
30
25
20
15
10
5
0