SwapDWord Function | |
Exchange the right and left halves of a double word.
Namespace:
XSharp.Core
Assembly:
XSharp.Core (in XSharp.Core.dll) Version: 2.19
Syntax FUNCTION SwapDWord(
dwSwap AS DWORD
) AS DWORD
public static uint SwapDWord(
uint dwSwap
)
Request Example
View SourceParameters
- dwSwap
- Type: DWord
The double word value whose words you want to swap.
Return Value
Type:
DWord
The swapped double word.
Remarks
SwapDWord() swaps the right half of a double word with the left half of a double word and returns the result.
The sign may not be preserved during the swap.
Examples
This example uses SwapDWord():
1bHex := 0x23CACE
2? SwapDWord(bHex)
See Also