Tagged Questions
The params-keyword tag has no wiki summary.
28
votes
3answers
2k views
Clojure keyword arguments
In Common Lisp you can do this:
(defun foo (bar &key baz quux)
(list bar baz quux))
(foo 1 :quux 3 :baz 2) ; => (1 2 3)
Clojure doesn't have keyword arguments. One alternative is this:
...
5
votes
3answers
3k views
Using C#'s xml comment cref attribute with params syntax
In C#, I am trying to use <see cref="blah"/> to reference a method signature that contains the params keyword. I know this converts the parameter list to an array, but I can't even figure out ...
5
votes
7answers
4k views
Overloading operator << - C++
Background
I have a container class which uses vector<std::string> internally. I have provided a method AddChar(std::string) to this wrapper class which does a *push_back()* to the internal ...
5
votes
5answers
856 views
Is it possible to explode an array so that its elements can be passed to a method with the params keyword?
Take this non-compiling code for instance:
public string GetPath(string basefolder, string[] extraFolders)
{
string version = Versioner.GetBuildAndDotNetVersions();
string callingModule = ...
4
votes
1answer
329 views
Overloading, generic type inference and the 'params' keyword
I just noticed a strange behavior with overload resolution.
Assume that I have the following method :
public static void DoSomething<T>(IEnumerable<T> items)
{
// Whatever
// ...
3
votes
5answers
104 views
What is a real example of when to use params as a method argument?
As I understand it, params is just syntactic sugar that "under the hood" simply gives you an array of the type you specify.
First, when would you use this?
Second, why would you use it instead of ...
2
votes
3answers
251 views
Can I use params in Action or Func delegates?
When I'm trying to use params in an Action delegate...
private Action<string, params object[]> WriteToLogCallBack;
I received this design time error:
Invalid token 'params' in class, ...
2
votes
4answers
74 views
How can I tell the number of replacements in a formatter string?
Given the following method: (real method has a few more parameters, but the important ones are below...)
public string DoSomething(string formatter, params string[] values)
{
// Do something ...
1
vote
1answer
396 views
How to use complex Type params argument in Spring.NET constructor
I am trying to use Spring.NET with a C# application to populate a parameter array (params keyword) constructor argument that is of a complex Type (call it SecretCode, which happens to be an enumerated ...
0
votes
2answers
399 views
C# invoke a webmethod
i am using a webmethod with uses the params keyword. (params int[] par)
can i test this webmethod via a browser ?
-> how to write this url to invoke the webmethod (e.g. with 6 arguments) ?