Return the CRC-64 of two sequential blocks, where summ1 is the CRC-64 of the 
            first block, summ2 is the CRC-64 of the second block, and len2 is the length
            of the second block.
            
 
Namespace: Aliyun.OSS.UtilAssembly: Aliyun.OSS (in Aliyun.OSS.dll) Version: 2.8.0.0 (2.8.0)
Syntaxpublic static ulong Combine(
	ulong crc1,
	ulong crc2,
	long len2
)
Public Shared Function Combine ( 
	crc1 As ULong,
	crc2 As ULong,
	len2 As Long
) As ULong
public:
static unsigned long long Combine(
	unsigned long long crc1, 
	unsigned long long crc2, 
	long long len2
)
static member Combine : 
        crc1 : uint64 * 
        crc2 : uint64 * 
        len2 : int64 -> uint64 
Parameters
- crc1
 - Type: SystemUInt64
Crc1. - crc2
 - Type: SystemUInt64
Crc2. - len2
 - Type: SystemInt64
Len2. 
Return Value
Type: 
UInt64The combined crc
See Also