Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Creates a 4-byte value by concatenating the two values.

Namespace:  JollyGiant.Emulation
Assembly:  JGSComdotNet (in JGSComdotNet.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
public static uint MakeLong(
	ushort low,
	ushort high
)


Visual Basic (Declaration)
Public Shared Function MakeLong ( _
	low As UShort, _
	high As UShort _
) As UInteger


Visual C++
public:
static unsigned int MakeLong(
	unsigned short low, 
	unsigned short high
)


JavaScript
JollyGiant.Emulation.Utility.MakeLong = function(low, high);


Parameters

low
Type: System..::.UInt16The UInt16
The low-order value.

high
Type: System..::.UInt16The UInt16
The high-order value.

Return Value

The new 4-byte value.

See Also


Utility Class
JollyGiant.Emulation Namespace

Send comments on this topic to Jolly Giant Software

...