Reading from a string : StringReader : String C# Examples


C# Examples » String » StringReader »

 

Reading from a string









    
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.Net.Sockets;
using  System.Runtime.InteropServices;
using  System.Text;

public  class  MainClass
{
        public  static  void  Main()
        {
        
                string  contents  =  "Test  content";
                using  (StringReader  reader  =  new  StringReader(contents))
                {
                        int  c;
                        while  ((c  =  reader.Read())  !=  -1)
                        {
                                Console.Write("{0}  ",  c);
                        }
                }
        }
}
    
   
  
   



Output

84 101 115 116 32 99 111 110 116 101 110 116


HTML code for linking to this page:

Follow Navioo On Twitter

C# Examples

 Navioo String
» StringReader