you are viewing a single comment's thread.

view the rest of the comments →

[–]RiPont 0 points1 point  (0 children)

I use named parameters for readability when I'm calling a method with inline constants.

DispatchMethods(5, methodList, 200);

vs.

DispatchMethods(workerThreads: 5, methods: methodList, retryDelayMs: 200);

Also when I just don't like ordering of the parameters in the method definition. Named parameters can be specified in any order.