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?
|
I need to downcast a long to an int in a method where the long is passed as a ref variable:
How can I easily do this?
| |||||||||||||||||||
feedback
|
|
You can't. However, any value you want to put into a How many places do you need to write to the ref parameter or read it within your code? If it's only in one or two places, you should be okay just to cast appropriately at the right times. Otherwise, you might want to introduce a new method:
The reason I say in the comments that it's not an exact mimic for the behaviour is that normally changes to the original ref parameter are visible even before the method returns, but now they'll only be visible at the very end. Also, if the method throws an exception, the value won't have been changed. The latter could be fixed with try/finally, but that's a bit clunky. In fact, if you want the try/finally behaviour you can do it all in a single method easily:
| |||||||||||
feedback
|
|
You don't. You can't take your reference and point it to a different type. How would the code calling your method know that it's changed? If you just want to work with the value as an
| |||||||||||
feedback
|
|
You're a little light on the details, but if you're talking about this scenario:
try this:
| |||
|
feedback
|
|
You can't safely cast a long to an int regardless of whether it's nullable or not as theres a chance it will overflow. try this
| |||
|
feedback
|
|
You cannot directly cast this. The best option would be to cast it to a local, then assign it at the end of your method.
| |||
|
feedback
|