Stream Write with StreamWriter : StreamWriter « File Directory Stream « C# / CSharp Tutorial






using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;



    class Program
    {
        static void Main(string[] args)
        {
                FileStream aFile = new FileStream("Log.txt", FileMode.OpenOrCreate);
                StreamWriter sw = new StreamWriter(aFile);
                bool truth = true;
                sw.WriteLine("Hello to you.");
                sw.WriteLine("It is now {0} and things are looking good.",DateTime.Now.ToLongDateString());
                sw.Write("More than that,");
                sw.Write(" it's {0} that C# is fun.", truth);
                sw.Close();
        }
    }








15.21.StreamWriter
15.21.1.new StreamWriter(fs, Encoding.UTF8)
15.21.2.Reading and Writing Files
15.21.3.Open a file using StreamWriter
15.21.4.Save string, decimal and char using FileStream and StreamWriter
15.21.5.Create StringWriter from StringBuilder
15.21.6.Using StreamWriter: write string
15.21.7.Using StreamWriter: write char
15.21.8.Using StreamWriter: Writes an Array of characters
15.21.9.Using StreamWriter: write a portion of an array
15.21.10.StreamWriter/Reader App
15.21.11.StringReader/Writer App
15.21.12.Stream Write with StreamWriter
15.21.13.Using statement and StreamWriter
15.21.14.Using File.CreateText to create a text file and return StreamWriter