Question: Create a program named SalesLetter whose Main() method uses several WriteLine() calls to display a sales letter to prospective clients for a business of your
Create a program named SalesLetter whose Main() method uses several WriteLine() calls to display a sales letter to prospective clients for a business of your choice. Display your contact information at least three times in the letter. The contact information should contain at least three lines with data such as land line phone number and/or cellphone number, email address, and web address.. Each time you want to display the contact information, call a method namedDisplayContactInfo().

SalesLetter.cs + 4 6 1 using static System.Console; 2 public class SalesLetter 3 public static void Main() 5 { // Write your main here. } public static void DisplayContactInfo() 9 { 10 // Write your DisplayContactInfo() } 12 3 13 7 8 11
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
