ellapt

T9.1.Hello

Jan 19th, 2013
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. using System;
  2. using System.Text;
  3.  
  4. class HelloPrg
  5. {
  6. static void Hello()
  7. {
  8. Console.Write("Please, enter your name: ");
  9. Console.WriteLine("Hello, {0}", Console.ReadLine());
  10. }
  11.  
  12. static void Main()
  13. {
  14. Console.OutputEncoding = System.Text.Encoding.Unicode;
  15. Hello();
  16. }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment