System.IO.Compression.ZipArchiveFile.OpenText C# (CSharp) Method

OpenText() public method

Opens the archiveFile represented by the ZipArchiveFile and returns a stream that can use to read text.
public OpenText ( ) : StreamReader
return StreamReader
        public StreamReader OpenText()
        {
            return new StreamReader(OpenRead());
        }