Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles
(untagged)

An introduction to Optional Parameters - C#4.0

0.00/5 (No votes)
27 Oct 2010 1  
This article shows the benefits of using Optional Parameter

Introduction

C#4.0 has bring the new Optional Parameter in its collection to give developers the flexibility passing parameters at their discretion.

Background:

Consider the below example which is done in C#3.0

class Program
    {
        static void Main(string[] args)
        {
            WithoutNamedParameter(null,null); //Print default values
            WithoutNamedParameter("Some Name", null); //Print only default age
            WithoutNamedParameter(null, 25); //Print only default name
            WithoutNamedParameter("Some Name", 50); //Print the value passed
            
            Console.ReadKey(true);
        }

        private static void WithoutNamedParameter(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 WithoutNamedParameter 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 WithoutNamedParameter 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.

Optional Parameters

Consider the below program written in C#4.0

 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 complier will happily compile though (which was not the case in the earlier example as it would have reported the error No overload for method 'WithoutNamedParameter' takes '0' arguments.

The IL for the code is depicted below

3.jpg

Which indicates that the Optional Parameter is in the MSIL.

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 complier will understand that and will do the favour./p>

The final output being

4.jpg

Conclusion:

In this short article we have seen how optional parameter help developers to avoid writing overloaded methods and rather helps in code reusability.

Comments on the topic are highly appreciated for the improvement of the topic.

Thanks for reading the article.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here