fork download
  1. using System;
  2. using System.Linq;
  3.  
  4. public class Test
  5. {
  6. public static void Main()
  7. {
  8. string[] words = { "tmod11c_half", "tmod11_28", "tmod11c" };
  9.  
  10. var sortedWords = words.OrderBy(a => a, StringComparer.Ordinal);
  11. Console.WriteLine("Ordinal: " + string.Join(", ", sortedWords));
  12. }
  13. }
Success #stdin #stdout 0.05s 27220KB
stdin
Standard input is empty
stdout
Ordinal: tmod11_28, tmod11c, tmod11c_half