๐๏ธ Byte.From
Creates an 8-bit integer from the given value.
๐๏ธ Currency.From
Returns a currency value from the given value.
๐๏ธ Decimal.From
Creates a Decimal from the given value.
๐๏ธ Double.From
Creates a Double from the given value.
๐๏ธ Int16.From
Creates a 16-bit integer from the given value.
๐๏ธ Int32.From
Creates a 32-bit integer from the given value.
๐๏ธ Int64.From
Creates a 64-bit integer from the given value.
๐๏ธ Int8.From
Creates a signed 8-bit integer from the given value.
๐๏ธ Number.Abs
Returns the absolute value of the number.
๐๏ธ Number.Acos
Returns the arccosine of the number.
๐๏ธ Number.Asin
Returns the arcsine of the number.
๐๏ธ Number.Atan
Returns the arctangent of the number.
๐๏ธ Number.Atan2
Returns the arctangent of the division of the two numbers.
๐๏ธ Number.BitwiseAnd
Returns the result of performing a bitwise "And" operation between the two inputs.
๐๏ธ Number.BitwiseNot
Returns a byte where each bit is the opposite of the input.
๐๏ธ Number.BitwiseOr
Returns the result of performing a bitwise "Or" between the two inputs.
๐๏ธ Number.BitwiseShiftLeft
Shifts the bits set to the left.
๐๏ธ Number.BitwiseShiftRight
Shifts the bits set to the right.
๐๏ธ Number.BitwiseXor
Returns the result of performing a bitwise "XOR" (Exclusive-OR) between the two inputs.
๐๏ธ Number.Combinations
Returns the number of unique combinations.
๐๏ธ Number.Cos
Returns the cosine of the number.
๐๏ธ Number.Cosh
Returns the hyperbolic cosine of the number.
๐๏ธ Number.Exp
Raises e to the given power.
๐๏ธ Number.Factorial
Returns the factorial of the number.
๐๏ธ Number.From
Creates a number from the given value.
๐๏ธ Number.FromText
Creates numbers from common text formats ("15", "3,423.10", "5.0E-10").
๐๏ธ Number.IntegerDivide
Divides two numbers and returns the integer portion of the result.
๐๏ธ Number.IsEven
Indicates if the value is even.
๐๏ธ Number.IsNaN
Indicates if the value is NaN (Not a number).
๐๏ธ Number.IsOdd
Indicates if the value is odd.
๐๏ธ Number.Ln
Returns the natural logarithm of the number.
๐๏ธ Number.Log
Returns the logarithm of the number to the specified base (default e).
๐๏ธ Number.Log10
Returns the base 10 logarithm of the number.
๐๏ธ Number.Mod
Integer divides two numbers and returns the remainder.
๐๏ธ Number.Permutations
Returns the number of permutations.
๐๏ธ Number.Power
Raises a number to the given power.
๐๏ธ Number.Random
Returns a random number.
๐๏ธ Number.RandomBetween
Returns a random number between two numbers.
๐๏ธ Number.Round
Returns the rounded number. The number of digits and rounding mode can be specified.
๐๏ธ Number.RoundAwayFromZero
Returns the result of rounding positive numbers up and negative numbers down. The number of digits can be specified.
๐๏ธ Number.RoundDown
Returns the highest previous number. The number of digits can be specified.
๐๏ธ Number.RoundTowardZero
Returns the result of rounding positive numbers down and negative numbers up. The number of digits can be specified.
๐๏ธ Number.RoundUp
Returns the next highest number. The number of digits can be specified.
๐๏ธ Number.Sign
Returns 1 if the number is positive, -1 if it is negative, and 0 if it is zero.
๐๏ธ Number.Sin
Returns the sine of the number.
๐๏ธ Number.Sinh
Returns the hyperbolic sine of the number.
๐๏ธ Number.Sqrt
Returns the square root of the number.
๐๏ธ Number.Tan
Returns the tangent of the number.
๐๏ธ Number.Tanh
Returns the hyperbolic tangent of the number.
๐๏ธ Number.ToText
Converts the given number to text.
๐๏ธ Percentage.From
Returns a percentage value from the given value.
๐๏ธ Single.From
Creates a Single from the given value.