System.IO.Compression.ZipArchiveFile.OpenText C# (CSharp) 메소드

OpenText() 공개 메소드

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