Top "Named-parameters" questions

Named parameters enable you to specify an argument for a particular parameter by associating the argument with the parameter's name rather than with the parameter's position in the parameter list.

C# Named parameters to a string that replace to the parameter values

I want in a good performance way (I hope) replace a named parameter in my string to a named parameter …

c# regex performance string named-parameters
Does PHP have "named parameters" so that early arguments can be omitted and later arguments can be written?

In PHP you can call a function with no arguments passed in so long as the arguments have default values …

php named-parameters default-arguments php-8
Why C++ doesn't support named parameter

Previously, I worked with python. In Python I used named parameter(keyword argument) for function calls. Wikipedia page about named …

c++ named-parameters
ASP Classic Named Parameter in Paramaterized Query: Must declare the scalar variable

I'm trying to write a parameterized query in ASP Classic, and it's starting to feel like i'm beating my head …

asp-classic parameterized named-parameters
Named and optional parameters, and WCF

so .Net 4 added named and optional parameters which are pretty sweet. I don't need to make as many 1 line overload …

.net wcf .net-4.0 optional-parameters named-parameters
Why aren't named parameters used more often?

I have designed a parameter class which allows me to write code like this: //define parameter typedef basic_config_param&…

c++ named-parameters
python sqlite insert named parameters or null

I'm trying to insert data from a dictionary into a database using named parameters. I have this working with a …

python sqlite named-parameters
Hibernate: Can't use a named parameter for OFFSET and LIMIT?

I'm trying to get the following NamedQuery to work: @NamedQuery(name="MyEntity.findByUser", query="SELECT m FROM MyEntity m WHERE …

java hibernate named-parameters ejbql
When to use keyword arguments aka named parameters in Ruby

Ruby 2.0.0 supports keyword arguments (KA) and I wonder what the benefits/use-cases are of this feature in context of pure …

ruby named-parameters keyword-argument
How to define named Parameters C#

This seems like a simple question, but for some reason I can't find the answer anywhere. Basically, I'd like to …

c# .net custom-attributes named-parameters