OpenNETCF Smart Device Framework 2.3

Namespace:  OpenNETCF
Assembly:  OpenNETCF (in OpenNETCF.dll) Version: 2.3.0.0

Syntax

C#
public static uint Max(
	uint val1,
	uint val2
)
Visual Basic (Declaration)
Public Shared Function Max ( _
	val1 As UInteger, _
	val2 As UInteger _
) As UInteger
Visual Basic (Usage)
Dim val1 As UInteger
Dim val2 As UInteger
Dim returnValue As UInteger

returnValue = Math2.Max(val1, val2)
Visual C++
public:
static unsigned int Max(
	unsigned int val1, 
	unsigned int val2
)
J#
public static UInt32 Max(
	UInt32 val1,
	UInt32 val2
)
JScript
public static function Max(
	val1 : uint, 
	val2 : uint
) : uint
JavaScript
OpenNETCF.Math2.Max = function(val1, val2);

Parameters

val1
Type: System..::.UInt32
val2
Type: System..::.UInt32

See Also