JanaGanaMana
Register
Login
Invoking Methods using Named Parameters
c# array declaration
enums in c#
Nullable variables
virtual and override keywords.
casting,as,is
private void foo(int first, int second, int third)
{
int y = first + second + third;
}
calling above method like below is legal.
foo(first: 12, third: 14, second: 21);
parameters are treated here as name value pairs and order is not important.