Tagged Questions
55
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
363 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
426 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
509 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
115 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.
...
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?