1 write to FileCommentLength
System.IO.Compression (1)
System\IO\Compression\ZipBlocks.cs (1)
654header.FileCommentLength = BinaryPrimitives.ReadUInt16LittleEndian(buffer[FieldLocations.FileCommentLength..]);
2 references to FileCommentLength
System.IO.Compression (2)
System\IO\Compression\ZipBlocks.cs (2)
665int dynamicHeaderSize = header.FilenameLength + header.ExtraFieldLength + header.FileCommentLength; 725header.FileComment = dynamicHeader.Slice(header.FilenameLength + header.ExtraFieldLength, header.FileCommentLength).ToArray();