BitOperations.Crc32C 方法

定义

重载

Crc32C(UInt32, Byte)

累积 CRC (循环冗余检查) 校验和。

Crc32C(UInt32, UInt16)

累积 CRC (循环冗余检查) 校验和。

Crc32C(UInt32, UInt32)

累积 CRC (循环冗余检查) 校验和。

Crc32C(UInt32, UInt64)

累积 CRC (循环冗余检查) 校验和。

Crc32C(UInt32, Byte)

Source:
BitOperations.cs
Source:
BitOperations.cs

重要

此 API 不符合 CLS。

累积 CRC (循环冗余检查) 校验和。

public:
 static System::UInt32 Crc32C(System::UInt32 crc, System::Byte data);
[System.CLSCompliant(false)]
public static uint Crc32C (uint crc, byte data);
[<System.CLSCompliant(false)>]
static member Crc32C : uint32 * byte -> uint32
Public Shared Function Crc32C (crc As UInteger, data As Byte) As UInteger

参数

crc
UInt32

要计算校验和的基值。

data
Byte

要计算校验和的数据。

返回

CRC 校验和。

属性

适用于

Crc32C(UInt32, UInt16)

Source:
BitOperations.cs
Source:
BitOperations.cs

重要

此 API 不符合 CLS。

累积 CRC (循环冗余检查) 校验和。

public:
 static System::UInt32 Crc32C(System::UInt32 crc, System::UInt16 data);
[System.CLSCompliant(false)]
public static uint Crc32C (uint crc, ushort data);
[<System.CLSCompliant(false)>]
static member Crc32C : uint32 * uint16 -> uint32
Public Shared Function Crc32C (crc As UInteger, data As UShort) As UInteger

参数

crc
UInt32

要计算校验和的基值。

data
UInt16

要计算校验和的数据。

返回

CRC 校验和。

属性

适用于

Crc32C(UInt32, UInt32)

Source:
BitOperations.cs
Source:
BitOperations.cs

重要

此 API 不符合 CLS。

累积 CRC (循环冗余检查) 校验和。

public:
 static System::UInt32 Crc32C(System::UInt32 crc, System::UInt32 data);
[System.CLSCompliant(false)]
public static uint Crc32C (uint crc, uint data);
[<System.CLSCompliant(false)>]
static member Crc32C : uint32 * uint32 -> uint32
Public Shared Function Crc32C (crc As UInteger, data As UInteger) As UInteger

参数

crc
UInt32

要计算校验和的基值。

data
UInt32

要计算校验和的数据。

返回

CRC 校验和。

属性

适用于

Crc32C(UInt32, UInt64)

Source:
BitOperations.cs
Source:
BitOperations.cs

重要

此 API 不符合 CLS。

累积 CRC (循环冗余检查) 校验和。

public:
 static System::UInt32 Crc32C(System::UInt32 crc, System::UInt64 data);
[System.CLSCompliant(false)]
public static uint Crc32C (uint crc, ulong data);
[<System.CLSCompliant(false)>]
static member Crc32C : uint32 * uint64 -> uint32
Public Shared Function Crc32C (crc As UInteger, data As ULong) As UInteger

参数

crc
UInt32

要计算校验和的基值。

data
UInt64

要计算校验和的数据。

返回

CRC 校验和。

属性

适用于