Click or drag to resize
Math Class
Provides constants and static methods for trigonometric, logarithmic, and other common mathematical functions.
Inheritance Hierarchy
SystemObject
  SystemMath

Namespace: System
Assembly: mscorlib (in mscorlib.dll) Version: 4.0.0.0
Syntax
C#
public static class Math

The Math type exposes the following members.

Methods
  NameDescription
Public methodStatic memberAbs(Decimal)
Returns the absolute value of a Decimal number.
Public methodStatic memberAbs(Double)
Returns the absolute value of a double-precision floating-point number.
Public methodStatic memberAbs(Int16)
Returns the absolute value of a 16-bit signed integer.
Public methodStatic memberAbs(Int32)
Returns the absolute value of a 32-bit signed integer.
Public methodStatic memberAbs(Int64)
Returns the absolute value of a 64-bit signed integer.
Public methodStatic memberAbs(SByte)
Returns the absolute value of an 8-bit signed integer.
Public methodStatic memberAbs(Single)
Returns the absolute value of a single-precision floating-point number.
Public methodStatic memberAcos
Returns the angle whose cosine is the specified number.
Public methodStatic memberAsin
Returns the angle whose sine is the specified number.
Public methodStatic memberAtan
Returns the angle whose tangent is the specified number.
Public methodStatic memberAtan2
Returns the angle whose tangent is the quotient of two specified numbers.
Public methodStatic memberCeiling(Decimal)
Returns the smallest integral value that is greater than or equal to the specified decimal number.
Public methodStatic memberCeiling(Double)
Returns the smallest integral value that is greater than or equal to the specified double-precision floating-point number.
Public methodStatic memberCos
Returns the cosine of the specified angle.
Public methodStatic memberExp
Returns e raised to the specified power.
Public methodStatic memberFloor(Decimal)
Returns the largest integer less than or equal to the specified decimal number.
Public methodStatic memberFloor(Double)
Returns the largest integer less than or equal to the specified double-precision floating-point number.
Public methodStatic memberIEEERemainder
Returns the remainder resulting from the division of a specified number by another specified number.
Public methodStatic memberLog(Double)
Returns the natural (base e) logarithm of a specified number.
Public methodStatic memberLog(Double, Double)
Returns the logarithm of a specified number in a specified base.
Public methodStatic memberLog10
Returns the base 10 logarithm of a specified number.
Public methodStatic memberMax(Byte, Byte)
Returns the larger of two 8-bit unsigned integers.
Public methodStatic memberMax(Decimal, Decimal)
Returns the larger of two decimal numbers.
Public methodStatic memberMax(Double, Double)
Returns the larger of two double-precision floating-point numbers.
Public methodStatic memberMax(Int16, Int16)
Returns the larger of two 16-bit signed integers.
Public methodStatic memberMax(Int32, Int32)
Returns the larger of two 32-bit signed integers.
Public methodStatic memberMax(Int64, Int64)
Returns the larger of two 64-bit signed integers.
Public methodStatic memberMax(SByte, SByte)
Returns the larger of two 8-bit signed integers.
Public methodStatic memberMax(Single, Single)
Returns the larger of two single-precision floating-point numbers.
Public methodStatic memberMax(UInt16, UInt16)
Returns the larger of two 16-bit unsigned integers.
Public methodStatic memberMax(UInt32, UInt32)
Returns the larger of two 32-bit unsigned integers.
Public methodStatic memberMax(UInt64, UInt64)
Returns the larger of two 64-bit unsigned integers.
Public methodStatic memberMin(Byte, Byte)
Returns the smaller of two 8-bit unsigned integers.
Public methodStatic memberMin(Decimal, Decimal)
Returns the smaller of two decimal numbers.
Public methodStatic memberMin(Double, Double)
Returns the smaller of two double-precision floating-point numbers.
Public methodStatic memberMin(Int16, Int16)
Returns the smaller of two 16-bit signed integers.
Public methodStatic memberMin(Int32, Int32)
Returns the smaller of two 32-bit signed integers.
Public methodStatic memberMin(Int64, Int64)
Returns the smaller of two 64-bit signed integers.
Public methodStatic memberMin(SByte, SByte)
Returns the smaller of two 8-bit signed integers.
Public methodStatic memberMin(Single, Single)
Returns the smaller of two single-precision floating-point numbers.
Public methodStatic memberMin(UInt16, UInt16)
Returns the smaller of two 16-bit unsigned integers.
Public methodStatic memberMin(UInt32, UInt32)
Returns the smaller of two 32-bit unsigned integers.
Public methodStatic memberMin(UInt64, UInt64)
Returns the smaller of two 64-bit unsigned integers.
Public methodStatic memberPow
Returns a specified number raised to the specified power.
Public methodStatic memberRound(Decimal)
Rounds a decimal value to the nearest integral value.
Public methodStatic memberRound(Double)
Rounds a double-precision floating-point value to the nearest integral value.
Public methodStatic memberRound(Decimal, Int32)
Rounds a decimal value to a specified number of fractional digits.
Public methodStatic memberRound(Decimal, MidpointRounding)
Rounds a decimal value to the nearest integer. A parameter specifies how to round the value if it is midway between two other numbers.
Public methodStatic memberRound(Double, Int32)
Rounds a double-precision floating-point value to a specified number of fractional digits.
Public methodStatic memberRound(Double, MidpointRounding)
Rounds a double-precision floating-point value to the nearest integer. A parameter specifies how to round the value if it is midway between two other numbers.
Public methodStatic memberRound(Decimal, Int32, MidpointRounding)
Rounds a decimal value to a specified number of fractional digits. A parameter specifies how to round the value if it is midway between two other numbers.
Public methodStatic memberRound(Double, Int32, MidpointRounding)
Rounds a double-precision floating-point value to the specified number of fractional digits. A parameter specifies how to round the value if it is midway between two other numbers.
Public methodStatic memberSign(Decimal)
Returns a value indicating the sign of a decimal number.
Public methodStatic memberSign(Double)
Returns a value indicating the sign of a double-precision floating-point number.
Public methodStatic memberSign(Int16)
Returns a value indicating the sign of a 16-bit signed integer.
Public methodStatic memberSign(Int32)
Returns a value indicating the sign of a 32-bit signed integer.
Public methodStatic memberSign(Int64)
Returns a value indicating the sign of a 64-bit signed integer.
Public methodStatic memberSign(SByte)
Returns a value indicating the sign of an 8-bit signed integer.
Public methodStatic memberSign(Single)
Returns a value indicating the sign of a single-precision floating-point number.
Public methodStatic memberSin
Returns the sine of the specified angle.
Public methodStatic memberSqrt
Returns the square root of a specified number.
Public methodStatic memberTan
Returns the tangent of the specified angle.
Public methodStatic memberTruncate(Decimal)
Calculates the integral part of a specified decimal number.
Public methodStatic memberTruncate(Double)
Calculates the integral part of a specified double-precision floating-point number.
Top
Fields
  NameDescription
Public fieldStatic memberE
Represents the natural logarithmic base, specified by the constant, e.
Public fieldStatic memberPI
Represents the ratio of the circumference of a circle to its diameter, specified by the constant, π.
Top
See Also