using System;
using System.Collections.Generic;
namespace ConsoleApplication_C_Sharp
{
class Program
{
static void Method()
{
Console.WriteLine("Method()");
}
static void Method(int n)
{
Console.WriteLine("Method(int n): " + n);
}
static void Method(string s)
{
Console.WriteLine("Method(string s): " + s);
}
static void Main(string[] args)
{
Method();
Method(13);
Method("c#");
}
}
}
/*
run:
Method()
Method(int n): 13
Method(string s): c#
*/