fork download
  1. using System;
  2. using System.Collections.Generic;
  3.  
  4. namespace ConsoleApplication128
  5. {
  6. class Program
  7. {
  8. static void Main(string[] args)
  9. {
  10. var items = new List<string>() {"abcd", "asdf"};
  11.  
  12. Console.WriteLine(items.Contains("ab"));
  13. }
  14. }
  15. }
  16.  
Success #stdin #stdout 0.03s 34712KB
stdin
Standard input is empty
stdout
False