System.IO.Compression.ZipArchiveFile.OpenText C# (CSharp) Méthode

OpenText() public méthode

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