I need help making this console based program into a GUI and I can't find out how to implement it into the code

  • Thread starter Thread starter cm07_
  • Start date Start date
C

cm07_

Guest
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Memo
{
class Program
{

public static void DisplayCompanyName() //creating a method for company name

{

Console.Write("C# Software Developers"); //making method display C# Software Developers

}
static void Main(string[] args)
{
//email to my boss about the memo of the company using it 3 times.
Console.Write("TO: Jeff Boss \nFROM: Christian Employee\n");

Console.Write("SUBJECT: ");

DisplayCompanyName();

Console.WriteLine();

Console.WriteLine();

Console.Write("I put a note on your desk regarding the company ");

DisplayCompanyName();

Console.Write(".\nI think they could be amazing partners and after talking to multiple and\nprevious clients, I highly doubt you wouldn't want \n");

DisplayCompanyName();

Console.Write(" to work for us.");
}
}
}

Continue reading...
 
Back
Top