0
votes
2answers
23 views
Mutually exclusive powershell parameters
SCENARIO
I'm writing a cmdlet for Powershell 2.0 using Visual Studio 2008 and .NET 3.5
the cmdlet requires 3 arguments.
my intended grammar of the cmdlet is something like thi …
-6
votes
2answers
42 views
how to use this operator in mvc ‘?’
i am having an mvc application i want to use this option please tell how can I use this option '?'.I have written int? isfeature.
but while inserting the value in database how to …
-2
votes
0answers
52 views
optional parameter???? [closed]
hello all,
i have made the below parameter as optional
int? status but I don't know how to pass the parameter while fetching the values please help me
Thanks
Ritz
0
votes
2answers
22 views
Adding a new parameter to a WCF operation: choices?
What's the best way to handle adding a new (optional) parameter to an existing opertion without requiring the client to update their WSDL? I do not want to update the namespace to …
0
votes
4answers
89 views
java optional parameters
I want to write an average method in java such that it can consume N amount of items, returning the average of them:
My idea was:
public static int average(int[] args){
…
0
votes
4answers
44 views
Optional where clause / parameter in a SQL 2008 stored proc?
Hi everyone,
I'm writing some code that updates a table. Depending on what the user wants to do, it either updates a large set of records, or a smaller one. The delineating fact …
0
votes
2answers
37 views
Can I have an optional boolean parameter for an ASP.NET SOAP Webservice
I want to build a webservice with this signature, which does not throw an exception if param2 is left empty. Is this possible?
[WebMethod]
public string HelloWorld(string param1, …
2
votes
8answers
205 views
Is there any reason C# does not support manual inline methods? And what about optional parameters?
Is there any design reason for that(like the reason they gave up multi inheritance)?
or it just wasn't important enough?
and same question applies for optional parameters in meth …
1
vote
3answers
77 views
What is the preferred design of a template function that requires a default parameter value?
I'm currently working on cleaning up an API full of function templates, and had a strong desire to write the following code.
template <typename T, typename U, typename V>
vo …
0
votes
5answers
174 views
Variable parameter lists in C++ and C
I'm working on rewriting a C program in C++ to take advantage of OO aspects so it can easily support multiple devices, and one part of the program is an expression evaluator. Expre …
1
vote
5answers
180 views
SQL Server: Optional variable in a stored procedure
I would like to know if there is anyway I can set one of my stored procedure parameter as optional.
IF @thing_id <> ''
BEGIN
SET @sFiltre = @sFiltre + ' AND OPERES.OPE_THI …
2
votes
1answer
64 views
Optional parameters in Active X libraries
I am creating an ActiveX library in Delphi in which a particular object has a property called DevelopmentCount with a single parameter of type date. Internally the property getter …
2
votes
6answers
223 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 …
3
votes
2answers
102 views
Does C# 4.0 and a combination of optional parameters and overloads give you a warning about ambiguity?
I've started reading Jon Skeet's early access version of his book, which contains sections on C# 4.0, and one thing struck me. Unfortunately I don't have Visual Studio 2010 availab …
1
vote
2answers
135 views
How do i set an optional parameter in PHP after the first optional parameter
Hi
I'm fairly new to php and I am trying to figure how do I set an optional parameter after the first optional parameter?
For example I have the following code:
function testPar …
