Skip to content

Instantly share code, notes, and snippets.

@gempir
Created September 12, 2016 12:41
Show Gist options
  • Save gempir/df56485ce4e70032827f51b24cd5701b to your computer and use it in GitHub Desktop.
Save gempir/df56485ce4e70032827f51b24cd5701b to your computer and use it in GitHub Desktop.
using System;
using System.Collections.Generic;
namespace a
{
class Program
{
public static void Main(string[] args)
{
printResponse("Daniel");
printResponse("Daniel", DateTime.Now);
printResponse("Daniel", DateTime.Now, "Berlin");
Console.ReadKey();
}
public static void printResponse(string name)
{
Console.WriteLine("Hallo " + name);
}
public static void printResponse(string name, DateTime date)
{
Console.WriteLine("Hallo " + name + ", " + date.ToString());
}
public static void printResponse(string name, DateTime date, string city)
{
Console.WriteLine("Hallo " + name + ", " + date.ToString() + ", " + city);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment