C# Math Max(UInt64, UInt64)
Description
Math Max(UInt64, UInt64)
returns the larger of two 64-bit
unsigned integers.
Syntax
Math.Max(UInt64, UInt64)
has the following syntax.
[CLSCompliantAttribute(false)]//from www.j a va 2 s. c om
public static ulong Max(
ulong val1,
ulong val2
)
Parameters
Math.Max(UInt64, UInt64)
has the following parameters.
val1
- The first of two 64-bit unsigned integers to compare.val2
- The second of two 64-bit unsigned integers to compare.
Returns
Math.Max(UInt64, UInt64)
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;/*from w w w.j ava 2 s . c o m*/
class Sample
{
public static void Main()
{
ulong xUlong1 = 104, xUlong2 = 114;
Console.WriteLine(Math.Max(xUlong1, xUlong2));
}
}
The code above generates the following result.