Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

22
votes
2answers
10k views

Java “params” in method signature?

In c# if you want a method to have an indeterminate number of parameters you can make the final parameter in the method signature a "params" which to the method looks like an array but allows anyone ...
17
votes
5answers
238 views

Why does passing null to a params method results in a null parameter array?

I have a method that uses the params keyword, like so: private void ParamsMethod(params string[] args) { // Etc... } Then, I call the method using various combinations of arguments: ...
17
votes
3answers
296 views

Is there a name for this pattern? (C# compile-time type-safety with “params” args of different types)

Is there a name for this pattern? Let's say you want to create a method that takes a variable number of arguments, each of which must be one of a fixed set of types (in any order or combination), and ...
15
votes
5answers
7k views

How to turn a Ruby Hash into HTTP Params

That is pretty easy with a plain hash like {:a => "a", :b => "b"} which would translate into "a=a&b=b" but what do you do with something more complex like {:a => "a", :b => ...
11
votes
3answers
212 views

How does C# choose with ambiguity and params

Say I have the following methods: public static void MyCoolMethod(params object[] allObjects) { } public static void MyCoolMethod(object oneAlone, params object[] restOfTheObjects) { } If I do ...
8
votes
5answers
529 views

Variable parameters in C# Lambda

Is it possible to have a C# lambda/delegate that can take a variable number of parameters that can be invoked with a Dynamic-invoke? All my attempts to use the 'params' keyword in this context have ...
7
votes
4answers
248 views

Why can't I pass a various numbers of references to a function?

I want to do something like this: double a, b, c, d, e; ParseAndWrite("{1, 2, 3}", ref a, ref b, ref c); ParseAndWrite("{4, 5}", ref d, ref e); -> a = 1, b = 2, c = 3, d = 4, e = 5 However, I ...
7
votes
2answers
466 views

C# 4.0, optional parameters and params do not work together

How can i create a method that has optional parameters and params together? static void Main(string[] args) { TestOptional("A",C: "D", "E");//this will not build TestOptional("A",C: "D"); ...
7
votes
4answers
1k views

Params IEnumerable<T> c#

Why cant I use an IEnumerable with params? Will this change in the future?
7
votes
2answers
3k views

How to rename the default identifier param “id” in Rails' map.resources()?

I like all the default routes that are generated by Rail's map.resources. But, there are cases where I would like to use a non-numeric identifier in my routes. For example, If have a nested route ...
6
votes
6answers
440 views

Cost of using params in C#

Does anyone have advice for using the params in C# for method argument passing. I'm contemplating making overloads for the first 6 arguments and then a 7th using the params feature. My reasoning is to ...
5
votes
9answers
2k views

C#: params keyword vs. list

What are the pro/cons of using the params keyword vs. a List as input to some c# function? Mainly what are the performance considerations and other trade offs.
4
votes
1answer
226 views

Rails: Plus sign in GET-Request replaced by space

In Rails 3 (Ruby 1.9.2) I send an request Started GET "/controller/action?path=/41_+" But the parameter list looks like this: {"path"=>"/41_ ", "controller"=>"controller", ...
4
votes
5answers
273 views

how to set a flag / variable in xslt to enter if again (related to converting to Junit format)

I am reading an external log file via xslt, and i want to find a certain line. Once i find it, i want to print all the lines until i hit another line. i need to do this repeatedly for a very big log ...
4
votes
2answers
89 views

Rails: Different Controller behaviour depending on route

I'm looking for the best practice to solve the following situation: I've got an "Additive" Model which should be many-to-many-associated with some other models. Examples: # Meal-Model ...
4
votes
2answers
4k views

Android set height and width of Custom view programetically

I have created a custom view named Graphview . Here is the structure for the GraphView class. public class GraphView extends View { public GraphView(Context context, float[] values, String ...
4
votes
2answers
407 views

passing a rails variable into a js function

Apologies -- I'm a newbie using Ruby on Rails. Still a little confused about how it works. Right now, in my view, under my scroller div, I have this code: #scroller -@other_images.each do |img| ...
4
votes
3answers
214 views

Passing zero arguments as params — where the behaviour is defined?

C# spec. allows you to call a function void foo(params int[] x) with zero parameters. However, I didn't find in C# Lang. Spec. a word on further behaviour -- will foo get empty array or null ...
4
votes
5answers
1k views

C# params keyword with two parameters of the same type

I just encountered something with C# today that I hadn't thought of before. I have two methods in my class, one an overload of the other. They are declared like so: 1) public void ...
4
votes
3answers
2k views

Anything like the c# params in c++?

That is the question.
4
votes
5answers
2k views

How to avoid the “unused param” warning when overriding a method in java 1.4?

In this code : public class MyClass { private Object innerValue; public Object getInnerValue() { return this.innerValue; } public void setInnerValue(Object innerValue) { ...
4
votes
2answers
611 views

Determining if a parameter uses “params” using reflection in C#?

Consider this method signature: public static void WriteLine(string input, params object[] myObjects) { // Do stuff. } How can I determine that the WriteLine method's "myObjects" pararameter ...
4
votes
3answers
412 views

There is a way to pass-by-reference using variable parameters in C#?

I would like to have a function that modifies some variable list of parameters but they are all value types (int, string). There is a way to make the params keyword work with ref keyword or something ...
3
votes
1answer
88 views

force grails to treat a string parameter as collection of string

In grails, I have a Controller that expects a 'options' parameter that is sent via POST that can be a collection, i.e. 'options=A&options=B&options=C' which gets into grails, thanks to grails ...
3
votes
4answers
126 views

Does the params keyword guarantee items to be in the same order as they are listed?

I'm working on a simple API that will accept a number of IBehaviours which are then applied in configuration. I am designing this using the params keyword since often there is just one behaviour ...
3
votes
1answer
905 views

How to set layout property from code

How can I set the property of an TextView which comes under a RelativeLayout from the code. Here s my layout: <RelativeLayout android:id="@+id/team_left" ...
3
votes
1answer
189 views

Pass all params forward?

Very simple question: how do you write a link_to that passes on all existing params to the target controller action?
3
votes
2answers
520 views

IronPython function with variable number of arguments as a delegate

In IronPython I am trying to call a PythonFunction with different numbers of arguments from C#. For instance; I want to do: def foo(a, b): print a, b def bar(a, b, c = None): print a, b, ...
3
votes
1answer
189 views

Are array parameters in rails guaranteed to be in the order in which they appear in the url?

Given the following url: http://example.com?arr[]=hello&arr[]=to&arr[]=you Am I able to bank on the fact that: params[:arr] == ['hello', 'to', 'you'] ? I ask because I have some ...
3
votes
4answers
585 views

C# method generic params parameter bug?

I appears to me as though there is a bug/inconsistency in the C# compiler. This works fine (first method gets called): public void SomeMethod(string message, object data); public void ...
3
votes
3answers
842 views

Include params/request information in Rails logger?

I'm trying to get some more information into my Rails logs, specifically the requested URI or current params, if available (and I appreciate that they won't always be). However I just don't seem able ...
3
votes
2answers
925 views

C# and variable number of parameters

I tried the following code: class Program: ProgParent { public int Max(params int[] op) { return 0; } public int Max(int i, params int[] op) ...
2
votes
1answer
50 views

RoR : form.select + onchange not passing the right value in params to the controller

I have a select menu in a Ruby on Rails form defined as follows: <%= f.select :Menu1, [["Option1","value1"],["Option2","value2"]], {}, {:id=>"Menu1_Id", :class => "Menu1_Class"} %> I am ...
2
votes
3answers
78 views

why arrays of primitive types are not considered as objects

I know that arrays in java extends Objects,So why passing them as params doesn't work. public static void main(String[] args) { foo(new Integer[]{1, 2, 3}); // 1 foo(new int[]{1,2,3}); //2 ...
2
votes
1answer
38 views

Sinatra - URL params in before block?

I have something like this get '/news/:news_slug/' do ... end What I've trying to do is access the news_slug in a before block, is there anyway to do that?
2
votes
4answers
83 views

Why to use the params keyword?

I know this is a basic question, but I couldn't find an answer. Why to use it? if you make a function or a method that's using it, when you remove it the code will still work perfectly, 100% as ...
2
votes
0answers
96 views

Not able to pass “+” to grails webservice URL

We are having an issue when we pass a parameter having "+" character in it, to a webservice (written in groovy), the character is being decoded to a space. Even if we pass "%2B", it is being decoded ...
2
votes
3answers
146 views

rails, how to get params from url string? [closed]

Possible Duplicate: How do I easily parse a URL with parameters in a Rails test? sorry for my english... I have in my archives.rb model a method to get all src attributes from a html ...
2
votes
2answers
126 views

Is there a way in Moles to mole/mock a method with the params keyword?

Is there a way to mole/stub/mock a method with the params keyword? Here is an example of the Method I am trying to mole/stub: Void SomeMethod(bool finalizer,params string[] parameters)... I have ...
2
votes
1answer
100 views

Can params keyword be expressed via WSDL definition

The application I am developing is exposing service metadata for a WCF service implementing following service contract: [ServiceContract] public interface IService { [OperationContract] ...
2
votes
2answers
5k views

ExtJs4 - Store baseParams config property?

In extjs3.x I used the stores baseParams config property to specify parameters used to load the store. This property no longer exists in extjs 4. What should I do instead of this? Also in extjs3 I ...
2
votes
2answers
992 views

Rails: redirect with params

What's the best way to pass some params along with a redirect? I saw examples that said if you just add them to your redirect hash they would pass along with the request, but that doesn't seem to ...
2
votes
2answers
469 views

Hide the params hash and replace it with a cleaner URL

The default URL generated after a get request in Rails isn't very nice to look at. Using the meta_search gem in a Rails 3 application, I've created a select menu to filter a list of articles by ...
2
votes
1answer
124 views

Is there anyway to pull the current url inside a controller?

I'm doing some serious hacking. And at a certain point in my row of methods, all my params are lost, and there's no way for me to differentiate between two objects innapropriately sharing the same ...
2
votes
2answers
575 views

Why does grails URL params decoding behave differently on server vs. local

Let's say I have the following entry in my grails URLMappings.groovy: "/actionName/param1"(controller:'myController', action:'myAction') When I call an URL where param1 includes + as a special ...
2
votes
1answer
945 views

Gallery layout problems

I'm trying to create a gallery in my Android project, but can't seem to make it work as it should. Here is what I am trying to do: Basically, I want a gallery that displays only one picture, but ...
2
votes
2answers
117 views

C#: How do I add a response to “/?” in my program

Basically, I know that some apps when called in command line with "/?" spit back a formatted list of how to call the app with params from the command line. Also, these apps sometimes even popup a box ...
2
votes
1answer
2k views

Android Linear Layout - Difference between weight and FILL_PARENT

According to documentaion, FILL_PARENT basically lets the view take up the entire extra space. Weight also dictates how much of the extra space can be taken by the view. What is the difference? For ...
2
votes
2answers
550 views

Rails pass :id with params

Using the rails button_to helper I'm trying to run the update method in a controller. I need to set the ID of the object being updated manually. The code I have I think should be right, but rails ...
2
votes
2answers
275 views

Overloading a params function with an IEnumerable

Suppose I have two functions: Foo(params INotifyPropertyChanged[] items) { //do stuff } Foo<T>(IEnumerable<T> items) where T : INotifyPropertyChanged { Foo(items.ToArray(); } The ...

1 2 3 4 5 6