Named parameters in C#

gpeipman
30.3K views

Open Source Your Knowledge, Become a Contributor

Technology knowledge has to be shared and made accessible for free. Join the movement.

Create Content

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.

Open Source Your Knowledge: become a Contributor and help others learn. Create New Content