Guest User

Untitled

a guest
Jun 25th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. if (openFileDialog1.ShowDialog() == DialogResult.OK)
  2. {
  3. System.IO.StreamReader sr = new
  4. System.IO.StreamReader(openFileDialog1.FileName);
  5. MessageBox.Show(sr.ReadToEnd());
  6. sr.Close();
Add Comment
Please, Sign In to add comment