C Sharp (C#) - Collections
What will be printed by this C# code?
var numbers = new List{4, 7, 2, 9}; int found = numbers.Find(x => x > 5); Console.WriteLine(found);
