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

CreateText() public méthode

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