BitOperations.Crc32C 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
Crc32C(UInt32, Byte) |
累積CRC (迴圈備援檢查) 總和檢查碼。 |
Crc32C(UInt32, UInt16) |
累積CRC (迴圈備援檢查) 總和檢查碼。 |
Crc32C(UInt32, UInt32) |
累積CRC (迴圈備援檢查) 總和檢查碼。 |
Crc32C(UInt32, UInt64) |
累積CRC (迴圈備援檢查) 總和檢查碼。 |
Crc32C(UInt32, Byte)
重要
此 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)
重要
此 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)
重要
此 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)
重要
此 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 總和檢查碼。
- 屬性