Reading from a string one line at a time : StringReader : String C# Examples


C# Examples » String » StringReader »

 

Reading from a string one line 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.Net.Sockets;
using  System.Runtime.InteropServices;
using  System.Text;

public  class  MainClass
{
        public  static  void  Main()
        {
        
        
                string  contents  =  "Test  content\r\nHello  there";
                using  (StringReader  reader  =  new  StringReader(contents))
                {
                        int  lineNo  =  0;
                        string  line;
                        while  ((line  =  reader.ReadLine())  !=  null)
                        {
                                Console.WriteLine("Line#{0}:  {1}",  ++lineNo,  line);
                        }
                }
        }
}
    
   
  
   



Output

Line#1: Test content
Line#2: Hello there


HTML code for linking to this page:

Follow Navioo On Twitter

C# Examples

 Navioo String
» StringReader