First va FirstOrDefault
Jasurbek Xasanboyev
class Program
{
static void Main(string[] args)
{
List<int> numbers = new List<int>() { 1, 2, 3, 4, 5, 6, 7, 8, 9 };
int res = numbers.First();
Console.WriteLine(res); //OUTPUT: 1
}
}class Program
{
static void Main(string[] args)
{
List<int> numbers = new List<int>() { 1, 2, 3, 4, 5, 6, 7, 8, 9 };
int res = (from num in numbers
select num).First();
Console.WriteLine(res); //OUTPUT: 1
}
}Last updated
Was this helpful?