Advertisement
Guest User

Untitled

a guest
Jun 7th, 2016
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading;
  6. using System.Threading.Tasks;
  7.  
  8. namespace _09.Capitalization
  9. {
  10. class Program
  11. {
  12. static void Main(string[] args)
  13. {
  14. var input = Console.ReadLine();
  15.  
  16. input = Thread.CurrentThread.CurrentCulture.TextInfo.ToTitleCase(input.ToLower());
  17. Console.WriteLine(input);
  18. }
  19. }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement