4
votes
3answers
145 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 allowin …
0
votes
5answers
140 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 d …
