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?

link|improve this question

64% accept rate
Can you provide a code sample of what you are trying to do? – Fredrik Mörk Jun 2 '09 at 19:59
2  
Still waiting for a vote-to-close reason of "questioner wastes everyone's time with a godawfully written question." – mquander Jun 2 '09 at 20:01
1  
Still waiting for someone else to point out Long To Int == overflow ;) – Eoin Campbell Jun 2 '09 at 20:02
1  
Since the intent is far from clear, it's a little hard to edit it for clarity. Any guess as to what the OP wants would probably be wrong. – Michael Meadows Jun 2 '09 at 20:07
1  
@jyotishka, you have to understand that even though 1,000,000 monkeys may stumble upon the answer to your question, the question itself isn't clear. It serves no future benefit for the community unless the question can be recast to something that is easy to understand and search. You should probably edit the question yourself to show exactly what you mean. A code sample is very useful in doing that. – Michael Meadows Jun 3 '09 at 13:17
show 6 more comments
feedback

5 Answers

up vote 5 down vote accepted

You can't. However, any value you want to put into a ref int can be put into a ref long anyway - you've just got to worry about the initial value, and what you want to do if it's outside the range of int.

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:

public void Foo(ref int x)
{
    // Here's the body I *really* want
}

public void Foo(ref long x)
{
    // But I'm forced to use this signature for whatever
    // reasons. Oh well. This hack isn't an *exact* mimic
    // of ref behaviour, but it's close.

    // TODO: Decide an overflow policy
    int tmp = (int) x;
    Foo(ref tmp);
    x = tmp;
}

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:

public void Foo(ref long x)
{
    int y = (int) x;
    try
    {
        // Main body of code
    }
    finally
    {
        x = y;
    }
}
link|improve this answer
1  
I would add that if the OP has control of the method that defines the ref parameter, it should be changed to a return value. I have never seen a situation in managed code where ref variables served any purpose except to make code messy, and induce sloppiness (difficult to trace side-effects). – Michael Meadows Jun 2 '09 at 20:22
Do you include "out" parameters in that too? I rather like the TryParse etc pattern. – Jon Skeet Jun 2 '09 at 20:56
I'm torn on out variables. It's essentially a second return value, which reeks of bad design (unless it's for interoperability). On the other hand, the problem with side-effects doesn't exist, so it's hard to argue that it is dangerous. Inconsistent yes, dangerous, no. I wonder if they had it to do again (after generics), if the framework team wouldn't have implemented ParseResult<T> as a return value. It would mean an extra line of code for each parse, but it would fit in with framework design better. – Michael Meadows Jun 2 '09 at 21:02
As a side note, one of the most interesting extension methods I have seen is: *** public static void IfDecimal(this string toParse, Action<decimal> toExecute) { decimal d; if (decimal.TryParse(toParse, out d)) toExecute(d); } "5.6".IfDecimal(Console.WriteLine); *** – Michael Meadows Jun 2 '09 at 21:15
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 int, then you could do something like this:

private void Process(ref long l)
{
    int i = (int)l;
    // do whatever
}
link|improve this answer
You'll want to set "l = i;" before the method exits if you manipulate i in the method. – Michael Meadows Jun 2 '09 at 20:03
Sure, assuming you actually want to modify the reference. Only God knows what the original poster wants to do with it. – mquander Jun 2 '09 at 20:08
True, it's an interesting exercise in the power of ambiguity to see the diversity of answers that accrete from such a terse 9 word question. – Michael Meadows Jun 2 '09 at 20:12
someone among you guys understood what i was looking for and gave a perfect answer.. so buzz off :) – jyotishka bora Jun 2 '09 at 20:16
@jyotishka bora: But Jon Skeet has super powers, so that's really not fair. – Michael Myers Jun 2 '09 at 20:19
show 1 more comment
feedback

You're a little light on the details, but if you're talking about this scenario:

public void Something(ref long something)
{
    // code
}

int foo;
Something(ref foo);

try this:

long foo;
Something(ref foo);
int bar = (int) foo;
link|improve this answer
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

        if (!blah.HasValue)
            blah = long.MaxValue;

        int x = (int)blah.Value;

        Console.WriteLine(x); //Not What you expect
link|improve this answer
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.

void Method(ref long myValue)
{
   int tempValue = (int)myValue;
   // change tempValue
   myValue = tempValue;
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.