Click here to Skip to main content
15,881,882 members
Articles / Programming Languages / C# 4.0

An Introduction to Named Parameters - C#4.0

Rate me:
Please Sign up or sign in to vote.
2.72/5 (15 votes)
26 Oct 2010CPOL1 min read 29.9K   6   16
TThis article will tell about the advantage of using named parameter

Introduction

C#4.0 has bring the new Named Parameter in its collection to give developers the flexibility of applying the parameters at their own discretion.

Background:

Consider the below example which is done in in a lower version of .Net

class Program
    {
        static void Main(string[] args)
        {
            WithoutNamedParameter(10, "SomeName");
            WithoutNamedParameter("SomeName",10);
            Console.ReadKey(true);
        }

        private static void WithoutNamedParameter(string name, int age)
        {
            Console.WriteLine(string.Format("{0},your age is {1}", name, age));
        }

        private static void WithoutNamedParameter(int age, string name)
        {
            Console.WriteLine(string.Format("{0},your age is {1}",name,age));
        }
    }

As can be seen that the function WithoutNamedParameter is a simple overloaded method where it accepts only 2 parameter and that too of same type (int and string) with the only difference that the order is changed. Though the output will be same in both the case.

This happens in real time scenario and the developer had no option but to create a overloaded method.

C#4.0 has culminated the problem by the introduction of Named parameter where the developers has the flexibility of using the parameters.

Overloaded problem solved using Named Parameter

Now let us see how C#4.0 has overcome such situation. Consider the below program

class Program
    {
        static void Main(string[] args)
        {
            #region Named Parameter Example
            WithNamedParameter(Age: 10, Name: "SomeName");
            WithNamedParameter(Name: "SomeName", Age: 10);
            Console.ReadKey(true);
            #endregion
        }

        private static void WithNamedParameter(string Name, int Age)
        {
            Console.WriteLine(string.Format("{0}, your age is {1}", Name, Age));
        }
    }

As can be seen that in the WithNamedParameter it is just the Parameter name that we are specifying in the method call followed by a colon( : ) and then the parameter value while the compiler does the rest. Is not that handy?

The output is as expected

3.jpg

Conclusion:

In this short article we have seen how named 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)



Comments and Discussions

 
GeneralMy vote of 1 Pin
Batzen28-Oct-10 1:52
Batzen28-Oct-10 1:52 
GeneralMy vote of 1 Pin
SledgeHammer0127-Oct-10 9:18
SledgeHammer0127-Oct-10 9:18 
GeneralMy vote of 1 Pin
Argyle4Ever27-Oct-10 4:28
Argyle4Ever27-Oct-10 4:28 
GeneralMy vote of 2 Pin
Toli Cuturicu27-Oct-10 2:49
Toli Cuturicu27-Oct-10 2:49 
GeneralMy vote of 1 Pin
Keith Barrow26-Oct-10 7:05
professionalKeith Barrow26-Oct-10 7:05 
GeneralMy vote of 1 Pin
Selvin26-Oct-10 4:46
Selvin26-Oct-10 4:46 
GeneralGood Pin
Nandakumar Rangaswamy26-Oct-10 2:19
Nandakumar Rangaswamy26-Oct-10 2:19 
GeneralMy vote of 4 Pin
luisnike1925-Oct-10 18:55
luisnike1925-Oct-10 18:55 
GeneralRe: My vote of 4 Pin
Niladri_Biswas26-Oct-10 0:21
Niladri_Biswas26-Oct-10 0:21 
GeneralRe: My vote of 4 Pin
ThatsAlok26-Oct-10 1:45
ThatsAlok26-Oct-10 1:45 
GeneralMy vote of 1 Pin
Sacha Barber25-Oct-10 5:19
Sacha Barber25-Oct-10 5:19 
MSDN
GeneralRe: My vote of 1 Pin
Niladri_Biswas25-Oct-10 5:47
Niladri_Biswas25-Oct-10 5:47 
GeneralYou are always well come Pin
Khaniya27-Oct-10 19:47
professionalKhaniya27-Oct-10 19:47 
GeneralRe: You are always well come Pin
Toli Cuturicu28-Oct-10 2:01
Toli Cuturicu28-Oct-10 2:01 
GeneralRe: You are always well come Pin
Niladri_Biswas28-Oct-10 4:28
Niladri_Biswas28-Oct-10 4:28 
GeneralRe: You are always well come Pin
Niladri_Biswas28-Oct-10 4:25
Niladri_Biswas28-Oct-10 4:25 

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

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