fork download
  1. using System;
  2. using System.Text;
  3. using System.Linq;
  4. using System.Collections.Generic;
  5.  
  6. public class Program
  7. {
  8.  
  9. public static void Main(string[] args)
  10. {
  11.  
  12. string from = "BB";
  13. string to = "AAA";
  14.  
  15. bool valid = string.Compare(from, to) < 0; // false
  16.  
  17. Console.Write("From lower than To? " + valid);
  18. }
  19. }
Success #stdin #stdout 0.05s 34048KB
stdin
Standard input is empty
stdout
From lower than To? False