fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. string s = " SomeRandom Words";
  8. Console.WriteLine("Does Whitespace at the end? {0}", s != s.TrimEnd());
  9. Console.WriteLine("Does Whitespace at the begining? {0}", s != s.TrimStart());
  10. Console.WriteLine("Does Contains whitespace? {0}", s.Contains(" "));
  11. }
  12. }
Success #stdin #stdout 0.04s 34024KB
stdin
Standard input is empty
stdout
Does Whitespace at the end? False
Does Whitespace at the begining? True
Does Contains whitespace? True