fork download
  1. using System;
  2. using System.Linq;
  3.  
  4. public class Test
  5. {
  6. public static void Main()
  7. {
  8. bool[] array = new bool[]{true, false, true, false, true, false};
  9. bool Checked = array.All(p => p);
  10. Console.WriteLine(Checked);
  11. }
  12. }
Success #stdin #stdout 0.02s 33888KB
stdin
Standard input is empty
stdout
False