Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class Program
- {
- public void main(String[] args)
- {
- Console.Title = "C# Revision";
- Console.BackgroundColor = ConsoleColor.DarkBlue;
- Console.ForegroundColor = ConsoleColor.Cyan;
- Console.WriteLine("Enter your name:");
- string name = Console.ReadLine();
- Console.WriteLine($"Hello {name}");
- Console.ReadKey();
- int c = Console.Read();
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement