using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace elSec
{
class Program
{
public void ovlDemo()
{
Console.WriteLine("Aşırı Yüklenmiş 1");
}
public void ovlDemo(int a)
{
Console.WriteLine("Aşırı Yüklenmiş "+a);
}
public int ovlDemo(int a, int b)
{
Console.WriteLine("Aşırı Yüklenmiş " + (a+b));
return a + b;
}
static void Main(string[] args)
{
Program p = new Program();
p.ovlDemo();
p.ovlDemo(2);
p.ovlDemo(2,1);
Console.ReadLine();
}
}
}