Dee Walker

Dee Walker

  • NA
  • 43
  • 11.2k

Help on my Program

Nov 3 2017 9:33 PM
What is wrong with my code error wise?
 
// Uses DisplayWebAddress method three times
using static System.Console;
class DebugSeven1
{
static void Main()
{
DisplayWebAddress;
Writeline("Shop at Shopper's World");
DisplayWebAddress;
WriteLine("The best bargains from around the world");
DisplayWebAddres;
}
public void DisplayWebAddress()
{
WriteLine("------------------------------");
WriteLine("Visit us on the web at:");
WriteLine("www.shoppersworldbargains.com");
WriteLine("******************************");
}
}
 
 

Answers (2)