Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System.IO;
- namespace TextEditor01
- {
- public partial class frmEditor : Form
- {
- public frmEditor()
- {
- InitializeComponent();
- }
- private void btnSave_Click(object sender, EventArgs e)
- {
- string sText = txtEditor.Text;
- StreamWriter sw = new StreamWriter(@"I:\test\test.txt",true);
- sw.WriteLine(sText);
- sw.Close();
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement