Answers for "c# read all lines from filestream"

C#
0

c# read all lines from filestream

public IEnumerable<string> ReadLines(Func<Stream> streamProvider,
                                     Encoding encoding)
{
    using (var stream = streamProvider())
    using (var reader = new StreamReader(stream, encoding))
    {
        string line;
        while ((line = reader.ReadLine()) != null)
        {
            yield return line;
        }
    }
}
Posted by: Guest on February-21-2020

C# Answers by Framework

Browse Popular Code Answers by Language