C# ile ilgili yardıminizi bekliyorum
4
●175
- 08-12-2019, 19:50:47
FileStream fs = new FileStream(txtYoluBurayaGelecek, FileMode.Open, FileAccess.Read); StreamReader sw = new StreamReader(fs, Encoding.GetEncoding("windows-1254")); string yazi = sw.ReadLine(); while (yazi != null) { TextBox1.Text+=yazi ; yazi = sw.ReadLine(); } sw.Close(); fs.Close();bu kod ihtiyacınızı görecektir.