public static class AnonyExt{ public static int Factorial(this int i) { return (i <= 1) ? 1 : (i-1).Factorial() * i; }}