Guest User

Untitled

a guest
Nov 13th, 2018
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. My Code
  2.  
  3. using System;
  4.  
  5. class App01
  6. {
  7. static void Main(string[] args)
  8. {
  9. string str01;
  10. for(;;)
  11. {
  12.  
  13. Console.Write ("Enter your name -");
  14. str01 = Console.ReadLine();
  15. Console.WriteLine("Hello '{0}'", str01);}
  16.  
  17. }
  18. }
Add Comment
Please, Sign In to add comment