Enumerate non-empty Lines for StreamReader

image_pdfimage_print
   
 
using System.Collections.Generic;


    public static class IOUtil
    {
        public static IEnumerable<string> EnumLines(System.IO.StringReader fp)
        {
            while (true)
            {
                var line = fp.ReadLine();
                if (line == null)
                {
                    break;
                }
                yield return line;
            }
        }

    }

   
     


This entry was posted in File Stream. Bookmark the permalink.