Advertisement
Guest User

Untitled

a guest
Dec 20th, 2014
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5.  
  6. namespace ConsoleApplication2
  7. {
  8. class Program
  9. {
  10. static void Main(string[] args)
  11. {
  12.  
  13. string [] pole = new string[2];
  14. {
  15. string[] jmena = { "Kamila", "Tereza", "Pepa" };
  16. Array.Sort(jmena);
  17. foreach (string s in jmena)
  18. Console.Write("{0} ", s);
  19. Console.ReadKey();
  20.  
  21. }
  22. }
  23.  
  24.  
  25.  
  26.  
  27. public static string p { get; set; }
  28. }
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement