
@Amatya Sir,
C#4.0 has bring the new Optional Parameter in its collection to give developers the flexibility passing parameters at their discretion. Consider the below example which is done in C#3.0
class Program
{
static void Main(string[] args)
{
WithoutOptionalParameter(null,null); //Print default values
WithoutOptionalParameter("Some Name", null); //Print only default age
WithoutOptionalParameter(null, 25); //Print only default name
WithoutOptionalParameter("Some Name", 50); //Print the value passed
Console.ReadKey(true);
}
private static void WithoutOptionalParameter(string name, int? age)
{
string _name = "Default Name";
int? _age = 18;
//Check if name is empty or not and hence assign
if (!string.IsNullOrEmpty(name)) _name = name;
//Check if age is empty or not and hence assign
if (age.HasValue) _age = age;
Console.WriteLine(string.Format("{0},your age is {1}", _name, _age));
}
}
In the WithoutOptionalParameter method first we have assigned two default values to the two variables _name and age. Then we are checking, if the Calling function has assigned any value to the method parameters or not and depending on that, we are displaying the values.
Next have a look at the calling function. The method WithoutOptionalParameter has been called four times with four different values. But the code looks pretty ugly.
Another option was to create four overloaded method to satisfy the requirement if the Empty or Null checking needs to be avoided which on the other hand was again a tedious job.
The new Optional Parameter, introduced with C#4.0 has a better look.
Consider the below program written in C#4.0 with Optional Parameter
class Program
{
static void Main(string[] args)
{
MethodWithOptionalParameters();//Print default values
MethodWithOptionalParameters("Some Name");//Print only default age
MethodWithOptionalParameters(Age: 25);//Ask to print only Name
//Prints the values passed
MethodWithOptionalParameters("Some Other Name", 20);
Console.ReadKey(true);
}
private static void MethodWithOptionalParameters
(string Name = "Default Name", int Age = 18)
{
Console.WriteLine(string.Format("{0}, your age is {1}",Name,Age));
}
}
As can be observed that first of all in the new code we are no longer checking the Empty/Null values of the method parameters. Instead , we have assigned the default values to the method parameters.
Consider the First Calling Method. We are not at all passing any parameter. The compiler will happily compile though (which was not the case in the earlier example as it would have reported the error No overload for method 'WithoutOptionalParameter' takes '0' arguments.
Consider the third Method call
MethodWithOptionalParameters(Age: 25);//Ask to print only Name Here we are specifying the Age only which is a Named Parameter in this case and the compiler will understand that and will do the favor.
In short, optional parameter help developers to avoid writing overloaded methods and rather helps in code re usability.
Hope this helps.
N.B.~ The answer presented here is an excerpt from my original article
http://www.codeproject.com/Articles/121496/An-introduction-to-Optional-Parameters-C?msg=3646311#xx3646311xx --
Thanks & Regards,
RNA Team
Amatya, if this helps please login to Mark As Answer. | Alert Moderator