Home >
Code >
File Handling
>
Create a text file and Read/Write using StreamWriter and StreamReader in C#.NET
Create a text file and Read/Write using StreamWriter and StreamReader in C#.NET
by
Thamilselvanj
on
Dec 19, 2011
Category:
File Handling
|
Views:
71
|
Points:
25
|
Silver ★
|
|
|
Below C# code will help you to create text file and write into text file also how we can read the text line by line using StreamWriter and StreamReader
Namespace
using System; using System.IO;
C# Code
private void WriteRead() { try { using (StreamWriter StrWriter = new StreamWriter(@"C:\test.txt")) { StrWriter.WriteLine("Create a text"); StrWriter.WriteLine("file and Read/Write using"); StrWriter.WriteLine("StreamWriter and StreamReader"); StrWriter.WriteLine("in C#.NET"); StrWriter.Write(StrWriter.NewLine); StrWriter.Close(); } using (StreamReader StrReader = new StreamReader(@"C:\test.txt")) { string ReadLine = string.Empty; while ((ReadLine = StrReader.ReadLine()) != null) { Response.Write(ReadLine+"<br>"); } StrReader.Close(); } } catch (Exception e) { Response.Write(e.Message); }
|
Like this code? Bookmark and Share:
|
|
|
|
No Response found!
|
|
|
|
|