C# Math

The C# Math class has many methods that allows you to perform mathematical tasks on numbers

Math.Max(x,y)

The Math.Max(x,y) method can be used to find the highest value of x and y:

Example

Math.Max(5, 10);

Continue reading C# Math