Computes the logrithm of the factorial of an integer.
- n (Int32)
- The argument, which must be non-negative.
The natrual logarithm of the factorial: ln(n!).
This function provides accurate values of ln(n!) even for values of n which would cause n! to overflow.
| Exception | Condition |
|---|---|
| ArgumentOutOfRangeException | n is negative. |