Advertisement
D_Corriher

Memo.cs

Apr 7th, 2020
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.12 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace Memo.cs
  8. {
  9.     class Program
  10.     {
  11.         public static void DisplayCompanyName()
  12.         {
  13.             Console.Write("C# Software Developers");
  14.         }
  15.         static void Main(string[] args)
  16.         {
  17.             string date = "4/7/2020";
  18.             string to = "Boss";
  19.             string from = "Dalton Corriher, Lead Programmer";
  20.             string subject = "Progress update on website";
  21.             Console.WriteLine(date + "\n" + to + "of" ); DisplayCompanyName();
  22.             Console.Write("\n" + from + "\n" + subject);
  23.             Console.WriteLine("\n The website for ");
  24.             DisplayCompanyName();
  25.             Console.WriteLine("\n will be ready by 4/16/2020. \n Over the next nine days we will add the finishing touches " +
  26.                 "to the website and an extensive \n testing to make sure everything works and that "); DisplayCompanyName();
  27.             Console.WriteLine("\n will be pleased with the outcome");
  28.             Console.ReadLine();
  29.         }
  30.     }
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement