Can I give default parameters in C#?
In C:
void fun(int i = 1) { printf(\"%d\", i); }
Can we give parameters a default value? I
This is a feature of C# 4.0, but was not possible without using function overload prior to that version.