We can used the named parameters in C#2010
create the method as
public string ConcatenateString(string a, string b)
{
return a + b;
}
so this will concatenate two strings that we all know,
Now, new in VS2010 calling this function
MessageBox.Show(ConcatenateString("DotNet", "Funda")); //this will Return "DotNetFunda"
MessageBox.Show(ConcatenateString("Funda", "DotNet")); //this will Return "FundaDotNet"
MessageBox.Show(ConcatenateString(b:"Funda", a:"DotNet")); //this will Return "DotNetFunda"