i like to copy the whole textfile into multiline textbox ,how can i do these?

Thanks in Advance

link|improve this question

56% accept rate
feedback

5 Answers

 textBox1.Text = System.IO.File.ReadAllText(path);
link|improve this answer
feedback

Use the ReadAllLines method to read the file as an array of strings, and put that in the textbox:

TheTextBox.Lines = File.ReadAllLines(fileName);
link|improve this answer
feedback

Use classes from System.IO namespace (e.g. File).

    using (FileStream fileStream = File.OpenRead("C:\your_file.txt"))
    using (StreamReader streamReader = new StreamReader(fileStream))
    {
        string fileContent = streamReader.ReadToEnd();

        myTextBox.Text = fileContent;
    }
link|improve this answer
feedback
string value1 = System.IO.File.ReadAllText("C:\\file.txt");
System.IO.File.WriteAllText("C:\\file.txt","Hello!");
link|improve this answer
feedback
using (StreamReader sr = new StreamReader(path)) 
    {            
        textbox1.Text = sr.ReadToEnd());
    }
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.