C# Math Max(UInt32, UInt32)
Description
Math Max(UInt32, UInt32)
returns the larger of two 32-bit
unsigned integers.
Syntax
Math.Max(UInt32, UInt32)
has the following syntax.
[CLSCompliantAttribute(false)]//from w w w.j a va2s . c om
public static uint Max(
uint val1,
uint val2
)
Parameters
Math.Max(UInt32, UInt32)
has the following parameters.
val1
- The first of two 32-bit unsigned integers to compare.val2
- The second of two 32-bit unsigned integers to compare.
Returns
Math.Max(UInt32, UInt32)
method returns Parameter val1 or val2, whichever is larger.
Example
The following example demonstrates how to use the Max method to return and display the greater of two variables.
using System;// w ww. j a v a2 s.c o m
class Sample
{
public static void Main()
{
uint xUint1 = 103, xUint2 = 113;
Console.WriteLine(Math.Max(xUint1, xUint2));
}
}
The code above generates the following result.