Special.Factorial Method

Returns the factorial of a positive integer.

Definition

Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public static double Factorial(
	int n
)

Parameters

n  Int32
A positive integer.

Return Value

Double
The factorial of n.

Remarks

The factorial of a number n is the product of all integers from one up to and including n.

Exceptions

OverflowException

the result is too large.

ArgumentOutOfRangeException

n is less than zero.

See Also