Named parameters in C#
gpeipman
29.3K views
Named parameters
Related to optional parameters in C# are named parameters at method calls. There are libraries with classes that have long argument lists and when calling these methods we usually have to give only the parameters we know.
The following example shows how to call method with named parameters to save time and win on readability of code.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using System;
class Hello
{
static void Main()
{
SomeMethod(value2: "Second value");
}
static void SomeMethod(string value1 = "value1", string value2 = "value2", string value3 = "value3" /* etc */)
{
Console.WriteLine("value1: " + value1);
Console.WriteLine("value2: " + value2);
Console.WriteLine("value3: " + value3);
}
}
Create your playground on Tech.io
This playground was created on Tech.io, our hands-on, knowledge-sharing platform for developers.