C# Corner
Tech
News
Videos
Forums
Trainings
Books
Events
More
Interviews
Jobs
Live
Learn
Career
Members
Blogs
Challenges
Certifications
Bounties
Contribute
Article
Blog
Video
Ebook
Interview Question
Collapse
Feed
Dashboard
Wallet
Learn
Achievements
Network
Refer
Rewards
SharpGPT
Premium
Contribute
Article
Blog
Video
Ebook
Interview Question
Register
Login
.NET
ADO.NET
Android
ASP.NET
C#
Databases & DBA
Design Patterns & Practices
Java
Learn iOS Programming
OOP/OOD
SharePoint
Software Testing
Web Development
WPF
View All
2
Reply
how to read data and write data in a text file?
isha iman
12y
1.7k
0
Reply
Delete Row
Delete Column
Insert Link
×
Insert
Cancel
Embed YouTube Video
×
Width (%)
Height (%)
Insert
Cancel
Table Options
×
Rows
Columns
First row as header
Create Table
Insert Image
×
Selected file:
Alignment
Left
Center
Right
Select an image from your device to upload
Upload to Server
Cancel
Submit
For reading and writing data you use different byte stream as well as character stream . Mostly developer recommand character stream , First of all include namespace using System.IO; Reading: FileStream fs = new FileStream("FileName.txt" , FileMode.Open); StreamReader sr = new StreamReader(fs); string s; while((s=sr.ReadLine()) != null) { Console.ReadLine(s); } sr.Close(); fs.Close(); ...................... Writing FileStream f = new FileStream("FileName.txt" , FileMode.Create); StreamWriter sw = new StreamWriter(f); sw.WriteLine("String"); // You can write lines as you can s.Close(); f.Close();
Salman Mushtaq
12y
0
pls check my blog :-http://arjunwalmiki.blogspot.in/ data-read from comport and save it in txt file and below same my friend also mentioned some comment might be some helpful for you.
Arjun Dhilod
12y
0
Message