Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

53
votes
6answers
3k views

C# : Why doesn't 'ref' and 'out' support polymorphism?

Take the following: class A {} class B : A {} class C { C() { var b = new B(); Foo(b); Foo2(ref b); // <= compile-time error: // "The 'ref' ...
18
votes
6answers
362 views

In what situations are 'out' parameters useful (where 'ref' couldn't be used instead)?

As far as I can tell, the only use for out parameters is that a caller can obtain multiple return values from a single method invocation. But we can also obtain multiple result values using ref ...
11
votes
2answers
415 views

When is the value of a C# 'out' or 'ref' parameter actually returned to the caller?

When I make an assignment to an out or ref parameter, is the value immediately assigned to the reference provided by the caller, or are the out and ref parameter values assigned to the references when ...
7
votes
3answers
1k views

Passing an explicit cast as a ref parameter (C#)

I have a class that is mostly a wrapper for a big array and some associated housekeeping. I have a function that takes a ref parameter. When I pass an instance of the class into the function, I want ...
4
votes
4answers
481 views

Why is an out parameter not allowed within an anonymous method?

This is not a dupe of Calling a method with ref or out parameters from an anonymous method I am wondering why out parameters are not allowed within anonymous methods. Not allowing ref parameters ...
2
votes
4answers
104 views

How to convert recursive procedure with side effects on ref param to recursive function returning a list?

It seems every time I go to write a recursive function I end up making it return void and using a ref parameter. I'd much rather be able to write a function that just returns a result list. ...
1
vote
2answers
155 views

How to convert out/ref extern parameters to F#

I've got a C# extern declaration that goes like this: [DllImport("something.dll")] public static extern ReturnCode GetParent(IntPtr inRef, out IntPtr outParentRef); How to translate that to ...
1
vote
3answers
127 views

Good naming convention for functions and methods which may modify (write back to) a parameter

I need to find a good and understandable naming-scheme for routines which deal with "value arrays" (I've written something similar to C++'s valarray in Java, with some optimizations for primitive ...
0
votes
5answers
247 views

How to downcast a ref variable within the method

I need to downcast a long to an int in a method where the long is passed as a ref variable: public void Foo(ref long l) { // need to consume l as an int } How can I easily do this?