public static double LogFactorial(
	int n
)Public Shared Function LogFactorial ( 
	n As Integer
) As Doublepublic:
static double LogFactorial(
	int n
)static member LogFactorial : 
        n : int -> float This function provides accurate values of ln(n!) even for values of n which would cause n! to overflow.
| ArgumentOutOfRangeException | n is negative. |