fork(3) download
  1. using System;
  2.  
  3. using System.Collections.Generic;
  4.  
  5. public class Test
  6. {
  7. public static void Main()
  8. {
  9. var conditions = new List<string>();
  10. conditions.Add("Lastname = 'Lennon'");
  11. conditions.Add("Firstname = 'John'");
  12. conditions.Add("Age = 40");
  13.  
  14. Console.WriteLine(string.Join(" OR ", conditions.ToArray() ));
  15. }
  16. }
Success #stdin #stdout 0.03s 36920KB
stdin
Standard input is empty
stdout
Lastname = 'Lennon' OR Firstname = 'John' OR Age = 40