Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace helloWorld
- {
- class Programm
- {
- static void Main(string[] args)
- {
- string phrase;
- string name;
- phrase = "Hello ";
- name = "Nick";
- Console.ForegroundColor = ConsoleColor.Black;
- Console.BackgroundColor = ConsoleColor.DarkYellow;
- Console.Clear();
- Console.WriteLine(phrase + name);
- Console.Read();
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment