Compress Method
See Also 
SourceCode.Serialization Namespace > ArchiveX Class : Compress Method



bytes
size

Glossary Item Box

Syntax

Visual Basic (Declaration)  
Public Shared Function Compress( _
   ByVal bytes() As Byte, _
   ByVal size As Integer _
) As Byte()
Visual Basic (Usage) Copy Code
Dim bytes() As Byte
Dim size As Integer
Dim value() As Byte
 
value = ArchiveX.Compress(bytes, size)
C#  
public static byte[] Compress( 
   byte[] bytes,
   int size
)
C++/CLI  
public:
static array<byte>^ Compress( 
   array<byte>^ bytes,
   int size
) 

Parameters

bytes
size

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also