Click here to Skip to main content
Licence CPOL
First Posted 25 Oct 2010
Views 8,415
Downloads 36
Bookmarked 6 times

An introduction to Optional Parameters - C#4.0

By | 26 Oct 2010 | Article
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, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Niladri_Biswas

Software Developer (Senior)
Software industry
India India

Member

Lead Engineer at HCL Technologies Ltd.
Code Project MVP 2012

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralMy vote of 1 PinmemberBatzen1:53 28 Oct '10  
GeneralMy vote of 1 PinmemberVolem23:35 27 Oct '10  
GeneralMy vote of 1 PinmemberSledgeHammer019:18 27 Oct '10  
GeneralMy vote of 1 PinmemberArgyle4Ever4:27 27 Oct '10  
GeneralMy vote of 2 PinmemberToli Cuturicu2:51 27 Oct '10  
GeneralMy vote of 1 PinmemberArun Jacob0:18 27 Oct '10  
GeneralMy vote of 1 PinmemberM8ix18:40 26 Oct '10  
GeneralMy vote of 1 PinmemberJF201518:16 26 Oct '10  
GeneralRe: My vote of 1 PinmemberNiladri_Biswas23:12 26 Oct '10  
GeneralMy vote of 1 PinmemberKeith Barrow7:08 26 Oct '10  
GeneralMy vote of 1 PinmemberSelvin4:44 26 Oct '10  
GeneralMy vote of 1 PinmemberNagy Vilmos2:29 26 Oct '10  
GeneralMy vote of 1 PinmemberSeishin#1:59 26 Oct '10  
Generalseriously, stop reqriting "begginers guide to c# 4.0"... PinmemberSeishin#1:59 26 Oct '10  
GeneralGood to see someone from HCL on CodeProject PinmemberThe Manoj Kumar17:06 25 Oct '10  
GeneralRe: Good to see someone from HCL on CodeProject PinmemberNiladri_Biswas19:38 25 Oct '10  
GeneralRe: Good to see someone from HCL on CodeProject PinmemberThe Manoj Kumar22:53 25 Oct '10  
GeneralRe: Good to see someone from HCL on CodeProject PinmemberNiladri_Biswas0:20 26 Oct '10  
GeneralMy vote of 5 Pinmembermoeinkiller20055:55 25 Oct '10  
GeneralRe: My vote of 5 PinmemberNiladri_Biswas19:39 25 Oct '10  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web04 | 2.5.120517.1 | Last Updated 27 Oct 2010
Article Copyright 2010 by Niladri_Biswas
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid