Advertisement
RadoNeshev

MyName

Mar 18th, 2014
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.38 KB | None | 0 0
  1. using System;
  2.  
  3. class MyName
  4. {
  5.     static void Main()
  6.     {
  7.         Console.BackgroundColor = ConsoleColor.Cyan;
  8.         Console.ForegroundColor = ConsoleColor.DarkRed;
  9.         string firstName = "Svetoslav";
  10.         string lastName = "Stoinov";
  11.         string fullName = firstName + " " + lastName;
  12.         Console.WriteLine("My full name is: \nSvetoslav \nStoinov");
  13.     }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement