Reading from a stream buffer at a time : Stream : File Directory Stream C# Examples


C# Examples » File Directory Stream » Stream »

 

Reading from a stream buffer at a time









    
using  System;
using  System.Collections.Generic;
using  System.Collections.Specialized;
using  System.IO;
using  System.IO.Compression;
using  System.Net;
using  System.Net.Mail;
using  System.Runtime.InteropServices;
using  System.Text;
using  System.Threading;

public  class  MainClass
{
        public  static  void  Main()
        {
                using  (Stream  s  =  new  FileStream("c:\\test.txt",  FileMode.Open))
                {
                        int  readCount;
                        byte[]  buffer  =  new  byte[4096];
                        while  ((readCount  =  s.Read(buffer,  0,  buffer.Length))  !=  0)
                        {
                                for  (int  i  =  0;  i  <  readCount;  i++)
                                {
                                        Console.Write("{0}  ",  buffer[i]);
                                }
                        }
                }
        }
}
    
   
  
   




HTML code for linking to this page:

Follow Navioo On Twitter

C# Examples

 Navioo File Directory Stream
» Stream