Tagged Questions

1
vote
2answers
93 views

Does C# 2.0-3.0 have named arguments support for methods ?

Is there a way to have named arguments like in perl/python for example object.method(arg1 => value1, arg2 => value2, arg3 => 0); in C# prior to C# 4.0?
0
votes
2answers
40 views

Named arguments in Mathematica.

What's the best/canonical way to define a function with optional named arguments? To make it concrete, let's create a function foo with named arguments a, b, and c, which default …
2
votes
6answers
225 views

Python normal arguments vs. keyword arguments

Could someone explain the differences to me? Aren't all arguments "keyword arguments"? They all have names, and can all be assigned by that name instead of the position. Do keyword …
1
vote
1answer
349 views

Call a parameterized Oracle query from ADODB in Classic ASP

I’m currently working on a classic ASP project talking to an Oracle database. I’m trying to find a way to safely call an Oracle PL/SQL script and passing parameters with ADO. The …
0
votes
4answers
352 views

ASP Classic Named Paramater in Paramaterized Query: Must declare the scalar variable

Hi all. I'm trying to write a parameterized query in ASP Classic, and it's starting to feel like i'm beating my head against a wall. I'm getting the following error: Must dec …
4
votes
24answers
1k views

Do you like the idea of optional parameters in C#

C# 4 is going to have optional parameters. Any thoughts on that? C# Feature Focus: Optional and Named Parameters, COM Interoperability
4
votes
4answers
392 views

Named/optional parameters in Delphi?

In one of the Delphi demo applications, I've stumbled upon some syntax that I didn't know the Delphi compiler accepted: // ......\Demos\DelphiWin32\VCLWin32\ActiveX\OleAuto\SrvCom …
1
vote
7answers
1k views

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

Hi, I want in a good performance way (I hope) replace a named parameter in my string to a named parameter from code, example, my string: "Hi {name}, do you like milk?" How coul …
1
vote
3answers
372 views

Emulating named function parameters in PHP, good or bad idea?

Named function parameters can be emulated in PHP if I write functions like this function pythonic(array $kwargs) { extract($kwargs); // .. rest of the function body } // …
1
vote
3answers
363 views

Shouldn’t C# 4.0’s new “named parameters” feature be called “named arguments”?

I suppose there could be historical reasons for this naming and that other languages have similar feature, but it also seems to me that parameters always had a name in C#. Argument …
4
votes
5answers
344 views

Determine if a named parameter was passed

I would like to know if it is possible to determine if a function parameter with a default value was passed in Python. For example, how does dict.pop work? >>> {}.pop('te …