.NET Tricks, Tips, and Snippets
Func<string, string> upper = str => str.ToUpper();
Func<int, int> Factorial = null; Factorial = (n) => n <= 1 ? 1 : n * Factorial(n - 1);
Post a Comment
No comments:
Post a Comment