Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Text;
- class HelloPrg
- {
- static void Hello()
- {
- Console.Write("Please, enter your name: ");
- Console.WriteLine("Hello, {0}", Console.ReadLine());
- }
- static void Main()
- {
- Console.OutputEncoding = System.Text.Encoding.Unicode;
- Hello();
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment