fork(2) download
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5.  
  6. class MyClass{
  7. static void Main(){
  8. if (new string[] { "test1", "test2", "test3" }.Contains("test1")) Console.WriteLine("it works");
  9. }
  10. }
Success #stdin #stdout 0.02s 33888KB
stdin
Standard input is empty
stdout
it works