BitOperations.Crc32C Metod
Definition
Viktigt
En del information gäller för förhandsversionen av en produkt och kan komma att ändras avsevärt innan produkten blir allmänt tillgänglig. Microsoft lämnar inga garantier, uttryckliga eller underförstådda, avseende informationen som visas här.
Överlagringar
| Name | Description |
|---|---|
| Crc32C(UInt32, Byte) |
Ackumulerar CRC-kontrollsumman (cyklisk redundanskontroll). |
| Crc32C(UInt32, UInt16) |
Ackumulerar CRC-kontrollsumman (cyklisk redundanskontroll). |
| Crc32C(UInt32, UInt32) |
Ackumulerar CRC-kontrollsumman (cyklisk redundanskontroll). |
| Crc32C(UInt32, UInt64) |
Ackumulerar CRC-kontrollsumman (cyklisk redundanskontroll). |
Crc32C(UInt32, Byte)
- Källa:
- BitOperations.cs
- Källa:
- BitOperations.cs
- Källa:
- BitOperations.cs
- Källa:
- BitOperations.cs
Viktigt!
Detta API uppfyller inte CLS.
Ackumulerar CRC-kontrollsumman (cyklisk redundanskontroll).
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
Parametrar
- crc
- UInt32
Basvärdet för att beräkna kontrollsumman på.
- data
- Byte
De data som kontrollsumman ska beräknas för.
Returer
CRC-kontrollsumman.
- Attribut
Gäller för
Crc32C(UInt32, UInt16)
- Källa:
- BitOperations.cs
- Källa:
- BitOperations.cs
- Källa:
- BitOperations.cs
- Källa:
- BitOperations.cs
Viktigt!
Detta API uppfyller inte CLS.
Ackumulerar CRC-kontrollsumman (cyklisk redundanskontroll).
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
Parametrar
- crc
- UInt32
Basvärdet för att beräkna kontrollsumman på.
- data
- UInt16
De data som kontrollsumman ska beräknas för.
Returer
CRC-kontrollsumman.
- Attribut
Gäller för
Crc32C(UInt32, UInt32)
- Källa:
- BitOperations.cs
- Källa:
- BitOperations.cs
- Källa:
- BitOperations.cs
- Källa:
- BitOperations.cs
Viktigt!
Detta API uppfyller inte CLS.
Ackumulerar CRC-kontrollsumman (cyklisk redundanskontroll).
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
Parametrar
- crc
- UInt32
Basvärdet för att beräkna kontrollsumman på.
- data
- UInt32
De data som kontrollsumman ska beräknas för.
Returer
CRC-kontrollsumman.
- Attribut
Gäller för
Crc32C(UInt32, UInt64)
- Källa:
- BitOperations.cs
- Källa:
- BitOperations.cs
- Källa:
- BitOperations.cs
- Källa:
- BitOperations.cs
Viktigt!
Detta API uppfyller inte CLS.
Ackumulerar CRC-kontrollsumman (cyklisk redundanskontroll).
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
Parametrar
- crc
- UInt32
Basvärdet för att beräkna kontrollsumman på.
- data
- UInt64
De data som kontrollsumman ska beräknas för.
Returer
CRC-kontrollsumman.
- Attribut