Advertisement
bero_0401

Console

Sep 28th, 2024
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.42 KB | Source Code | 0 0
  1. public class Program
  2. {
  3.     public void main(String[] args)
  4.     {
  5.  
  6.         Console.Title = "C# Revision";
  7.         Console.BackgroundColor = ConsoleColor.DarkBlue;
  8.         Console.ForegroundColor = ConsoleColor.Cyan;
  9.         Console.WriteLine("Enter your name:");
  10.         string name = Console.ReadLine();
  11.         Console.WriteLine($"Hello {name}");
  12.         Console.ReadKey();
  13.         int c = Console.Read();
  14.  
  15.  
  16.     }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement