Then overload the DisplayGreeting method to allow the code to compile.
using System;
namespace HelloWorld
{
class Program
{
static void Main(string[] args)
{
DisplayGreeting();
string name = "Simon";
DisplayGreeting(name);
}
}
}
namespace HelloWorld
{
class Program
{
static void Main(string[] args)
{
DisplayGreeting();
string name = "Simon";
DisplayGreeting(name);
}
}
}

Jignesh KumarPosted Dec 15, 2018, 12:49 PM