Tagged Questions
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 ...
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?