Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
StreamWriter in C#
Write characters to a stream with StreamWriter in C#.
With StreamWriter, create a new file −
StreamWriter sw = new StreamWriter("hello.txt"))
Add text to the file −
sw.WriteLine("Hello");
sw.WriteLine("World");
The following is the code −
Example
using System.IO;
public class Program {
public static void Main() {
using (StreamWriter sw = new StreamWriter("hello.txt")) {
sw.WriteLine("Hello");
sw.WriteLine("World");
}
}
}
It creates the file “hello.text” and adds text to it −
Output
The following is the output.
Hello World
Advertisements