using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace App24
{
class Program
{
static void Main(string[] args)
{
int toplam = 0;
toplama(out toplam);
Console.WriteLine(toplam);
toplama2(ref toplam);
Console.WriteLine(toplam);
Console.ReadLine();
}
static void toplama(out int prmToplam) // Out metodu içindeki durumda set edilmeli.
{
prmToplam = 10 + 20;
}
static void toplama2(ref int prmToplam) // Red methodu içinde set edilmek zorunda değil
{
}
}
}
Yazılım Eğitimi, Sql Server, C, C++, C#, Pyhton, Mobile, Web & IT üzerine yazılar.
Kaydol:
Kayıt Yorumları (Atom)
Excel’de Programsız QR Kod Oluşturma, How To QR Code For Excel
🧩 Excel’de Programsız QR Kod Oluşturma Bu yöntemle ürün numarası, seri numarası veya istediğiniz metinleri kullanarak Excel üzerinden doğru...
-
from FIRMALAR, SEKTORLER, GOREVLER Firmalar= sol tablo Görevler=sağ tablo 4 adet join var INNER JOIN LEFT JOIN RIGHT JOIN FULL OUT...
-
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Data.SqlClient; using Syst...
Hiç yorum yok:
Yorum Gönder