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 ...
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 ...