Edit by carlossanlop: API Proposal here
When we make a zip package, the comment is very important function that we use it very often. The corefx has already implemented it, see the definition _archiveComment field at ZipArchive.cs#L32, the reader at ZipArchive.cs#L561 and the writter at ZipArchive.cs#L693.
We can inbreak the ZipArchive instance by reflect and modify the _archiveComment field, then saved zip file is fine.
Proposed API
Just make private field _archiveComment as public property ArchiveComment, or other advises.
Edit by carlossanlop: API Proposal here
When we make a zip package, the comment is very important function that we use it very often. The corefx has already implemented it, see the definition
_archiveCommentfield at ZipArchive.cs#L32, the reader at ZipArchive.cs#L561 and the writter at ZipArchive.cs#L693.We can inbreak the
ZipArchiveinstance by reflect and modify the_archiveCommentfield, then saved zip file is fine.Proposed API
Just make private field
_archiveCommentas public propertyArchiveComment, or other advises.