vote up 4 vote down star
1

I'm familiar with using out to pass in a simple data type for manipulation, but I can't seem to figure out how to pass in this Queue<> without causing a compile error. Any ideas?

Code:

Queue<SqlCommand> insertScriptQueue = new Queue<SqlCommand>();

private void UpdateDefaultIndicator(int newDefaultViewID,
                                    out (Queue<SqlCommand>) insertScriptQueue)

UpdateDefaultIndicator(newViewID, out (Queue<SqlCommand>)insertScriptQueue);
flag

75% accept rate
1  
What compiler error are you getting? And try omitting the ( ) around Queue on the second line of code. Also style the code as code by using the 101010 button above the edit field. It makes it a lot better readable :) – Cloud Oct 22 at 21:39
What is the type of insertScriptQueue in your invocation of UpdateDefaultIndicator? It looks like you are casting the parameter, which is illegal in conjunction with using out. – Steve Guidi Oct 22 at 21:42
1  
Given the number of apparent problems with this code, it would be nice if you could post the code that worked for you. – Robert Harvey Oct 22 at 21:44
Robert, replace out with ref. – Phoexo Oct 22 at 21:47

8 Answers

vote up 2 vote down check

The Queue is going to be passed by reference anyway, its not a value type. Just don't use 'out'. UPDATE: Pardon me, I was thinking of 'ref' - but the fact that you're passing a Queue data type in, and not just an unallocated reference, makes me think that you want to be using 'ref' anyway. Except of course that you don't need to use 'ref' because the Queue isn't a value type; its already going to be passed in 'by reference', by default.

link|flag
1  
It's not going to be passed "by reference" - the reference will be passed by value. It's a subtle difference, but an important one. "ref" and "out" can still be important with reference types. See pobox.com/~skeet/csharp/parameters.html – Jon Skeet Oct 22 at 22:13
Thanks! Excellent detail. So while Queue is a reference type, the necessity for a 'ref' parameter depends on whether or not he sets that parameter to a different Queue object in his function, with the expectation of the caller seeing the new object. – Bruce Oct 22 at 23:59
vote up 5 vote down

You're passing in a reference type. No need to use out.

link|flag
1  
What does out have to do with passing a reference type? The out modifier simply allows you to use an uninitialised variable (which can be a value-type or ref-type) and ensures that it is initialised in the method itself. – Luke Oct 22 at 21:55
Okay; no need to use out OR ref in this particular context. He's initialized his variable already before passing it in. – Gurdas Nijor Oct 22 at 21:57
vote up 4 vote down

Why do you want a "out" ...here...why dont you return the type instead ? Let method return Queue<> insteasd of void..will that work for you?

link|flag
vote up 4 vote down

You shouldn't be initializing an out variable. If you need to modify an in-scope variable, use ref instead.

As Ed points out in his comment, "modify" may not give you the full idea of what's happening here - an out parameter of a reference type will by definition be an initialized object at the end of the function call. As most other answers have pointed out, if you want to pass in an initialized object, ref is the stronger choice.

link|flag
You really mean "if you need to modify a variable that is a value type or assign a new object to the parameter for a reference type" – Ed Swangren Oct 22 at 21:43
I checked the docs, it appears it actually is ok to initialize an out variable; presumably the reference to the old value is discarded when the function returns a new one. – Bruce Oct 22 at 21:47
vote up 3 vote down
Queue<SqlCommand> insertScriptQueue;

private void UpdateDefaultIndicator(int newDefaultViewID,
                                out Queue<SqlCommand> insertScriptQueue){/*body*/}

UpdateDefaultIndicator(newViewID,out insertScriptQueue);

That works fine for me... What error are you getting?

link|flag
vote up 0 vote down

No need to use out for ref types.

link|flag
1  
Why not? If I want to pass an uninitialised variable (value-type or ref-type) and have the method initialise it then out is exactly what I need. – Luke Oct 22 at 21:58
as mentioned above, if the only value of the function/method is to return the object (single object) then have it returned as the function type, multiple types yes, then the function can initiales them if you forgot to do so. – astander Oct 22 at 22:05
Fair enough, but that's not what your answer says, and your comment applies equally to value or ref types. – Luke Oct 22 at 22:13
vote up 0 vote down

make sure that you are assigning insertScriptQueue some kind of value inside of the UpdateDefaultIndicator method

link|flag
vote up 0 vote down

The answer to the original question, by the way, is that you're casting to Queue, and the cast is returning an interim reference. That reference is not assignable, and so is not a legal out parameter. Erich's code implements the fix for this problem.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.