🙂 İNSANLARIN EN HAYIRLISI INSANLARA FAYDALI OLANDIR 🙂

Burak HABER / C# / 95. Metin Belgesi Okuma

1-) C# - 95. Metin Belgesi Okuma
NOT=System.IO kütüphaneye eklenicek.

using System;

using System.Windows.Forms;

using System.IO;

 

namespace MetinBelgesiKaydetme

{

    public partial class Form1 : Form

    {

        public Form1()

        {

            InitializeComponent();

        }

 

        private void button1_Click(object sender, EventArgs e)

        {

            if (openFileDialog1.ShowDialog()==DialogResult.OK)

            {

                StreamReader sr = new StreamReader(openFileDialog1.FileName);

                string satir = sr.ReadLine();

                while (satir != null)

                {

                    listBox1.Items.Add(satir);

                    satir = sr.ReadLine();

                }

            }

        }

    }

}


 2021 Mart 11 Perşembe
 385