Skip to content

Instantly share code, notes, and snippets.

@Mahno74
Last active July 6, 2021 10:37
Show Gist options
  • Save Mahno74/baf5a796c42cea1207b7103a5eacd3b3 to your computer and use it in GitHub Desktop.
Save Mahno74/baf5a796c42cea1207b7103a5eacd3b3 to your computer and use it in GitHub Desktop.
Чтение файла TXT
System.IO.StreamReader Reader;
Создание потока среамреадер для чтения из файла
Reader = new System.IO.StreamReader(openFileDialog1.FileName, System.Text.Encoding.GetEncoding(1251));
textBox1.Text = Reader.ReadToEnd(); Reader.Close();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment