Introduction
This article explains the various ways to make method parameters optional. This is a very common interview question in C# Interview Questions.
There are following 4 ways to make method parameters optional.
- Using parameter arrays
- Using method overloading
- Using parameter defaults
- Using OptionalAttribute that is present in the System.Runtime.InteropServices namespace
Using parameter arrays
The Sum method allows us to add 2 or more numbers. The firstNumber and secondNumber parameters are mandatory, whereas the MoreNumbers parameter is optional.
Output
![optonal param]()
Note. A parameter array must be the last parameter in a formal parameter list. The following method will not compile and gives a compile time error.
Using method overloading
In the preceding example, I have two Sum methods that are overloaded or we can say there are 2 versions of the Sum method.
Output
![method Overload]()
Parameters optional by specifying parameter defaults
In the preceding example, I have set MoreNumbers=null by default and when I call Sum(10,20) then by default the value passed to MoreNumber=Null and when I call the same method like Sum(10,20, new int[]{30,40,50}) then it changes the default value.
Output
![param dedfault]()
Example
In the preceding example, the Test method contains the 3 parameters a, b, c but we have set b=5 and c=10 so here a parameter will be a required parameter and b and c are optional parameters.
![test method]()
Note. Optional parameters must appear after all the required parameters, in other words the following method will not compile.
Assigning a value to a specific optional parameter
The following sample shows how to assign a value to a specific optional parameter
Output
![example 2]()
Making method parameters optional using Optional Attribute
In this example, we will discuss OptionalAttribute in the System.Runtime.InteropServices namespace.
In the preceding example, we have a method Sum where two parameters are required, firstNumber and secondNumber, but the last parameter MoreNumber I have marked as an [Optional] attribute.
Output
![addtional attribute]()
Thank you. Happy Coding