Compares the absolute values of 4 signed integers and returns the unsigned magnitude of the number with the greatest absolute value.
'Declaration
Public Shared Function MaxNum( _
ByVal As System.Integer, _
ByVal As System.Integer, _
ByVal As System.Integer, _
ByVal As System.Integer _
) As System.UInteger
public static System.uint MaxNum(
System.int ,
System.int ,
System.int ,
System.int
)
Parameters
- a
- Number a.
- b
- Number b.
- c
- Number c.
- d
- Number d.
Return Value
The unsigned magnitude of the number with the greatest absolute value.