Tagged Questions

11
votes
7answers
380 views

Are Options and named default arguments like oil and water in a Scala API?

I'm working on a Scala API (for Twilio, by the way) where operations have a pretty large amount of parameters and many of these have sensible default values. To reduce typing and increase usability, ...
4
votes
2answers
130 views

Optional Specification of some C# Optional Parameters

Suppose you have a method with the following signature: public void SomeMethod(bool foo = false, bool bar = true) { /* ... */ } When calling this method, is there a way to specify a value for bar ...
4
votes
2answers
3k views

.Net 4.0, named and optional parameters, and WCF

so .Net 4 added named and optional params which are pretty sweet..I don't need to make as many 1 line overload methods. Will that work over WCF?
4
votes
4answers
1k 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\SrvComp\Word\ // ...
3
votes
6answers
3k 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 arguments mean ones ...
2
votes
2answers
64 views

How to use Optional/Named parameters in C# 4.0

For the life of me I seemingly can not understand what Optional Parameters are used for. By that, I mean, what kind of programs would they be used in, and how? The same thing applies to Named ...
1
vote
2answers
107 views

Can I use Named and Optional Arguments in ironpython

I hope to load .net dll in ironpython. But one of static functions in .net dll, has some Named and Optional Arguments. like, Draw(weight:w,height:h, Area=1) Only can I use full arguments?