mirror of
https://github.com/github/codeql.git
synced 2025-12-18 01:33:15 +01:00
10 lines
219 B
C#
10 lines
219 B
C#
class MissedAllOpportunityFix
|
|
{
|
|
public static void Main(string[] args)
|
|
{
|
|
List<int> lst = new List<int> { 2, 4, 18, 12, 80 };
|
|
|
|
Console.WriteLine("All Even = " + lst.All(i => i % 2 == 0));
|
|
}
|
|
}
|