taks kamps

taks kamps

  • NA
  • 39
  • 6.1k

method overloading

Dec 15 2018 7:46 AM
i want to Write a method called DisplayGreeting that writes "Hello, World!" to the console.
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);
}
}

Answers (3)