Crc32ModeSComputeChecksumBytes Method |
Calculates a four-byte parity on the message passed across. Only the first three bytes are applied
against Mode-S messages (when big-endian format is used).
Namespace: VirtualRadar.InterfaceAssembly: VirtualRadar.Interface (in VirtualRadar.Interface.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax public byte[] ComputeChecksumBytes(
byte[] bytes,
int offset,
int length,
bool littleEndian = false
)
Public Function ComputeChecksumBytes (
bytes As Byte(),
offset As Integer,
length As Integer,
Optional littleEndian As Boolean = false
) As Byte()
public:
array<unsigned char>^ ComputeChecksumBytes(
array<unsigned char>^ bytes,
int offset,
int length,
bool littleEndian = false
)
member ComputeChecksumBytes :
bytes : byte[] *
offset : int *
length : int *
?littleEndian : bool
(* Defaults:
let _littleEndian = defaultArg littleEndian false
*)
-> byte[]
Parameters
- bytes
- Type: SystemByte
- offset
- Type: SystemInt32
- length
- Type: SystemInt32
- littleEndian (Optional)
- Type: SystemBoolean
Return Value
Type:
ByteSee Also