private void button1_Click(object sender, EventArgs e) { Konfigurasyon konf = Konfigurasyon.Instance(); MessageBox.Show(Convert.ToString(konf.MaxKullanici)); MessageBox.Show(konf.LogDosyaAdi); }
public static Konfigurasyon Instance() { if (instance == null) { instance = new Konfigurasyon(); } return(instance); }