c#之stream相關類小記

wisdomone1發表於2011-08-28
using System;
using System.IO;
class Test
{
    public static void Main()
    {
          //using寫法,宣告一個類物件,然後在using後面的{}中使用此類物件
          //注:using寫法表示此物件僅在此範圍可用,非此範圍就會dispose此佔用的resource
        using(StreamWriter sw=new StreamWriter("c:\\teststream.txt"))
        {
            sw.Write("1");//向stream中寫東東(從外面)
            sw.WriteLine("2 and new");
            sw.WriteLine(DateTime.Now);

////write(要寫入到流的char陣列,char陣列的起始位置,char陣列的元素個數
            sw.Write(new char[] { 't','o','u','x'},0,4);
            Console.ReadKey();
        }
    }
}

附上stream類的連結:

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/9240380/viewspace-706058/,如需轉載,請註明出處,否則將追究法律責任。

相關文章