fork download
  1. using System;
  2. using System.Globalization;
  3. using System.Linq;
  4. using System.Collections.Generic;
  5.  
  6. public class Test
  7. {
  8. public static void Main()
  9. {
  10. List<string> listA = new List<string>();
  11. listA.Add("a");
  12. listA.Add("b");
  13. listA.Add("c");
  14. listA.Add("d");
  15.  
  16. List<string> listB = new List<string>();
  17. listB.Add("b");
  18. listB.Add("d");
  19. bool allAinB = !listB.Except(listA).Any();
  20. Console.Write(allAinB);
  21. }
  22. }
Success #stdin #stdout 0.03s 34864KB
stdin
Standard input is empty
stdout
True