summary refs log tree commit diff
path: root/io/Program.cs
diff options
context:
space:
mode:
Diffstat (limited to 'io/Program.cs')
-rw-r--r--io/Program.cs22
1 files changed, 22 insertions, 0 deletions
diff --git a/io/Program.cs b/io/Program.cs
new file mode 100644
index 0000000..fce6910
--- /dev/null
+++ b/io/Program.cs
@@ -0,0 +1,22 @@
+using System;

+using System.IO;

+

+string file = "C:/tmp/io.txt";

+

+StreamWriter writer = File.CreateText(file);

+for(int i=1; i<=50; i++)

+{

+	writer.WriteLine(i);

+}

+writer.Close();

+

+StreamReader reader = File.OpenText(file);

+string line = reader.ReadLine();

+for(int  i=0; line != null; i++, line = reader.ReadLine())

+{

+	if(i % 5 == 0)

+		Console.Read();

+	Console.WriteLine(line);

+}

+reader.Close();

+File.Delete(file);
\ No newline at end of file