Static metot tanımlamaları ve parametre kullanımı
Gönderilme zamanı: 12 Ağu 2020 21:04
Kod: Tümünü seç
namespace ConsoleApp1
{
class sinif1
{
public int topla1(int sayi1,int sayi2)
{
return sayi1 + sayi2;
}
}
class sinif2
{
public static int topla2 (int sayi1,int sayi2)
{
return sayi1 + sayi2;
}
}
class Program
{
public static int topla(int sayi1,int sayi2)
{
return sayi1 + sayi2;
}
static void Main(string[] args)
{
Console.WriteLine(topla(5, 10));
//********SINIF1 DEN ÇAĞIRMA********//
sinif1 snf1 = new sinif1();
Console.WriteLine(snf1.topla1(4,7));
//********SINIF2 DEN ÇAĞIRMA********//
Console.WriteLine(sinif2.topla2(6, 4));//Static tanımlama yapıldığı zaman yeni bir nesne oluşturmaya ihtiyaç yoktur.
Console.ReadKey();