A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://learn.microsoft.com/en-us/dotnet/api/system.math below:

Math Class (System) | Microsoft Learn

E

Represents the natural logarithmic base, specified by the constant, e.

PI

Represents the ratio of the circumference of a circle to its diameter, specified by the constant, π.

Tau

Represents the number of radians in one turn, specified by the constant, τ.

Abs(Decimal)

Returns the absolute value of a Decimal number.

Abs(Double)

Returns the absolute value of a double-precision floating-point number.

Abs(Int16)

Returns the absolute value of a 16-bit signed integer.

Abs(Int32)

Returns the absolute value of a 32-bit signed integer.

Abs(Int64)

Returns the absolute value of a 64-bit signed integer.

Abs(IntPtr)

Returns the absolute value of a native signed integer.

Abs(SByte)

Returns the absolute value of an 8-bit signed integer.

Abs(Single)

Returns the absolute value of a single-precision floating-point number.

Acos(Double)

Returns the angle whose cosine is the specified number.

Acosh(Double)

Returns the angle whose hyperbolic cosine is the specified number.

Asin(Double)

Returns the angle whose sine is the specified number.

Asinh(Double)

Returns the angle whose hyperbolic sine is the specified number.

Atan(Double)

Returns the angle whose tangent is the specified number.

Atan2(Double, Double)

Returns the angle whose tangent is the quotient of two specified numbers.

Atanh(Double)

Returns the angle whose hyperbolic tangent is the specified number.

BigMul(Int32, Int32)

Produces the full product of two 32-bit numbers.

BigMul(Int64, Int64, Int64)

Produces the full product of two 64-bit numbers.

BigMul(Int64, Int64)

Produces the full product of two 64-bit numbers.

BigMul(UInt32, UInt32)

Produces the full product of two unsigned 32-bit numbers.

BigMul(UInt64, UInt64, UInt64)

Produces the full product of two unsigned 64-bit numbers.

BigMul(UInt64, UInt64)

Produces the full product of two unsigned 64-bit numbers.

BitDecrement(Double)

Returns the largest value that compares less than a specified value.

BitIncrement(Double)

Returns the smallest value that compares greater than a specified value.

Cbrt(Double)

Returns the cube root of a specified number.

Ceiling(Decimal)

Returns the smallest integral value that is greater than or equal to the specified decimal number.

Ceiling(Double)

Returns the smallest integral value that is greater than or equal to the specified double-precision floating-point number.

Clamp(Byte, Byte, Byte)

Returns value clamped to the inclusive range of min and max.

Clamp(Decimal, Decimal, Decimal)

Returns value clamped to the inclusive range of min and max.

Clamp(Double, Double, Double)

Returns value clamped to the inclusive range of min and max.

Clamp(Int16, Int16, Int16)

Returns value clamped to the inclusive range of min and max.

Clamp(Int32, Int32, Int32)

Returns value clamped to the inclusive range of min and max.

Clamp(Int64, Int64, Int64)

Returns value clamped to the inclusive range of min and max.

Clamp(IntPtr, IntPtr, IntPtr)

Returns value clamped to the inclusive range of min and max.

Clamp(SByte, SByte, SByte)

Returns value clamped to the inclusive range of min and max.

Clamp(Single, Single, Single)

Returns value clamped to the inclusive range of min and max.

Clamp(UInt16, UInt16, UInt16)

Returns value clamped to the inclusive range of min and max.

Clamp(UInt32, UInt32, UInt32)

Returns value clamped to the inclusive range of min and max.

Clamp(UInt64, UInt64, UInt64)

Returns value clamped to the inclusive range of min and max.

Clamp(UIntPtr, UIntPtr, UIntPtr)

Returns value clamped to the inclusive range of min and max.

CopySign(Double, Double)

Returns a value with the magnitude of x and the sign of y.

Cos(Double)

Returns the cosine of the specified angle.

Cosh(Double)

Returns the hyperbolic cosine of the specified angle.

DivRem(Byte, Byte)

Produces the quotient and the remainder of two unsigned 8-bit numbers.

DivRem(Int16, Int16)

Produces the quotient and the remainder of two signed 16-bit numbers.

DivRem(Int32, Int32, Int32)

Calculates the quotient of two 32-bit signed integers and also returns the remainder in an output parameter.

DivRem(Int32, Int32)

Produces the quotient and the remainder of two signed 32-bit numbers.

DivRem(Int64, Int64, Int64)

Calculates the quotient of two 64-bit signed integers and also returns the remainder in an output parameter.

DivRem(Int64, Int64)

Produces the quotient and the remainder of two signed 64-bit numbers.

DivRem(IntPtr, IntPtr)

Produces the quotient and the remainder of two signed native-size numbers.

DivRem(SByte, SByte)

Produces the quotient and the remainder of two signed 8-bit numbers.

DivRem(UInt16, UInt16)

Produces the quotient and the remainder of two unsigned 16-bit numbers.

DivRem(UInt32, UInt32)

Produces the quotient and the remainder of two unsigned 32-bit numbers.

DivRem(UInt64, UInt64)

Produces the quotient and the remainder of two unsigned 64-bit numbers.

DivRem(UIntPtr, UIntPtr)

Produces the quotient and the remainder of two unsigned native-size numbers.

Exp(Double)

Returns e raised to the specified power.

Floor(Decimal)

Returns the largest integral value less than or equal to the specified decimal number.

Floor(Double)

Returns the largest integral value less than or equal to the specified double-precision floating-point number.

FusedMultiplyAdd(Double, Double, Double)

Returns (x * y) + z, rounded as one ternary operation.

IEEERemainder(Double, Double)

Returns the remainder resulting from the division of a specified number by another specified number.

ILogB(Double)

Returns the base 2 integer logarithm of a specified number.

Log(Double, Double)

Returns the logarithm of a specified number in a specified base.

Log(Double)

Returns the natural (base e) logarithm of a specified number.

Log10(Double)

Returns the base 10 logarithm of a specified number.

Log2(Double)

Returns the base 2 logarithm of a specified number.

Max(Byte, Byte)

Returns the larger of two 8-bit unsigned integers.

Max(Decimal, Decimal)

Returns the larger of two decimal numbers.

Max(Double, Double)

Returns the larger of two double-precision floating-point numbers.

Max(Int16, Int16)

Returns the larger of two 16-bit signed integers.

Max(Int32, Int32)

Returns the larger of two 32-bit signed integers.

Max(Int64, Int64)

Returns the larger of two 64-bit signed integers.

Max(IntPtr, IntPtr)

Returns the larger of two native signed integers.

Max(SByte, SByte)

Returns the larger of two 8-bit signed integers.

Max(Single, Single)

Returns the larger of two single-precision floating-point numbers.

Max(UInt16, UInt16)

Returns the larger of two 16-bit unsigned integers.

Max(UInt32, UInt32)

Returns the larger of two 32-bit unsigned integers.

Max(UInt64, UInt64)

Returns the larger of two 64-bit unsigned integers.

Max(UIntPtr, UIntPtr)

Returns the larger of two native unsigned integers.

MaxMagnitude(Double, Double)

Returns the larger magnitude of two double-precision floating-point numbers.

Min(Byte, Byte)

Returns the smaller of two 8-bit unsigned integers.

Min(Decimal, Decimal)

Returns the smaller of two decimal numbers.

Min(Double, Double)

Returns the smaller of two double-precision floating-point numbers.

Min(Int16, Int16)

Returns the smaller of two 16-bit signed integers.

Min(Int32, Int32)

Returns the smaller of two 32-bit signed integers.

Min(Int64, Int64)

Returns the smaller of two 64-bit signed integers.

Min(IntPtr, IntPtr)

Returns the smaller of two native signed integers.

Min(SByte, SByte)

Returns the smaller of two 8-bit signed integers.

Min(Single, Single)

Returns the smaller of two single-precision floating-point numbers.

Min(UInt16, UInt16)

Returns the smaller of two 16-bit unsigned integers.

Min(UInt32, UInt32)

Returns the smaller of two 32-bit unsigned integers.

Min(UInt64, UInt64)

Returns the smaller of two 64-bit unsigned integers.

Min(UIntPtr, UIntPtr)

Returns the smaller of two native unsigned integers.

MinMagnitude(Double, Double)

Returns the smaller magnitude of two double-precision floating-point numbers.

Pow(Double, Double)

Returns a specified number raised to the specified power.

ReciprocalEstimate(Double)

Returns an estimate of the reciprocal of a specified number.

ReciprocalSqrtEstimate(Double)

Returns an estimate of the reciprocal square root of a specified number.

Round(Decimal, Int32, MidpointRounding)

Rounds a decimal value to a specified number of fractional digits using the specified rounding convention.

Round(Decimal, Int32)

Rounds a decimal value to a specified number of fractional digits, and rounds midpoint values to the nearest even number.

Round(Decimal, MidpointRounding)

Rounds a decimal value an integer using the specified rounding convention.

Round(Decimal)

Rounds a decimal value to the nearest integral value, and rounds midpoint values to the nearest even number.

Round(Double, Int32, MidpointRounding)

Rounds a double-precision floating-point value to a specified number of fractional digits using the specified rounding convention.

Round(Double, Int32)

Rounds a double-precision floating-point value to a specified number of fractional digits, and rounds midpoint values to the nearest even number.

Round(Double, MidpointRounding)

Rounds a double-precision floating-point value to an integer using the specified rounding convention.

Round(Double)

Rounds a double-precision floating-point value to the nearest integral value, and rounds midpoint values to the nearest even number.

ScaleB(Double, Int32)

Returns x * 2^n computed efficiently.

Sign(Decimal)

Returns an integer that indicates the sign of a decimal number.

Sign(Double)

Returns an integer that indicates the sign of a double-precision floating-point number.

Sign(Int16)

Returns an integer that indicates the sign of a 16-bit signed integer.

Sign(Int32)

Returns an integer that indicates the sign of a 32-bit signed integer.

Sign(Int64)

Returns an integer that indicates the sign of a 64-bit signed integer.

Sign(IntPtr)

Returns an integer that indicates the sign of a native-sized signed integer.

Sign(SByte)

Returns an integer that indicates the sign of an 8-bit signed integer.

Sign(Single)

Returns an integer that indicates the sign of a single-precision floating-point number.

Sin(Double)

Returns the sine of the specified angle.

SinCos(Double)

Returns the sine and cosine of the specified angle.

Sinh(Double)

Returns the hyperbolic sine of the specified angle.

Sqrt(Double)

Returns the square root of a specified number.

Tan(Double)

Returns the tangent of the specified angle.

Tanh(Double)

Returns the hyperbolic tangent of the specified angle.

Truncate(Decimal)

Calculates the integral part of a specified decimal number.

Truncate(Double)

Calculates the integral part of a specified double-precision floating-point number.


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4