değişkenlerin içerisine sınıf oluşuturp direk index numaralarını okuma tanımlama
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace App19
{
class Program
{
static void Main(string[] args)
{
string[] ArreyOrnek = new string[3]; // Kapasitesi 3 olarak belirlenmiş array degiskeni.
string[] ArreyOrnek2 = new string[] { "Burak", "Karani", "Onur", "Devran", "Hakan", };
// Kapasitesi yerine dogrudan 4 deger deklere edilmis array degiskeni
for (int i = 0; i < ArreyOrnek2.Length; i++)
{
Console.WriteLine(ArreyOrnek2[i]);
}
Console.WriteLine("----------------");
Console.WriteLine(ArreyOrnek2[1]);
Console.ReadLine();
}
}
}
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