Click or drag to resize

MakeDWord Function

X#
Create a DWORD from two words

Namespace:  XSharp.Core
Assembly:  XSharp.Core (in XSharp.Core.dll) Version: 2.19
Syntax
 FUNCTION MakeDWord(
	wLow AS WORD,
	wHigh AS WORD
) AS DWORD
Request Example View Source

Parameters

wLow
Type: Word
The number you want to have in the Low word of the Dword
wHigh
Type: Word
The number you want to have in the High word of the Dword

Return Value

Type: DWord
Remarks
Examples
X#
1? MakeDword(0x0001, 0x0001) // 65537
2? MakeDword(0xFFFF, 0xFFFF) // 4294967295
See Also