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

CreateText() 공개 메소드

Truncate the archive textStream and return a StreamWrite sutable for writing text to the textStream.
public CreateText ( ) : StreamWriter
리턴 StreamWriter
        public StreamWriter CreateText()
        {
            return new StreamWriter(Create());
        }