native support, no emulation etc.
You can now write very short functions in C#: int Factorial(int n) => n is <= 1 ? 1 : n * factorial(n -1);
native support, no emulation etc.
You can now write very short functions in C#: int Factorial(int n) => n is <= 1 ? 1 : n * factorial(n -1);