public static double BinomialCoefficient(
int n,
int k
)
Public Shared Function BinomialCoefficient (
n As Integer,
k As Integer
) As Double
public:
static double BinomialCoefficient(
int n,
int k
)
static member BinomialCoefficient :
n : int *
k : int -> float
ArgumentOutOfRangeException | n is negative. -or- k is negative. -or- k is greater than n. |