I am trying to convert the value of the generic type parameter T value into integer after making sure that T is in fact integer:

public class Test
{
    void DoSomething<T>(T value)
    {
        var type = typeof(T);
        if (type == typeof(int))
        {
            int x = (int)value; // Error 167 Cannot convert type 'T' to 'int'
            int y = (int)(object)value; // works though boxing and unboxing
        }
    }
}

Although it works through boxing and unboxing, this is an additional performance overhead and i was wandering if there's a way to do it directly.

Thank you!

link|improve this question
2  
So, let me understand this... You are constructing a method that is generic, but it needs to know if the type parameter is an int? Your design, there is something wrong with it. – Will May 19 '10 at 17:02
Any reason to not add an overload void DoSomething(int value){} ? – Nathan Ernst May 19 '10 at 17:07
This is a simplified example. Actual code has lots of stuff before and after conversion which benefit from generics – Aleksey Bieneman May 19 '10 at 17:26
feedback

3 Answers

up vote 7 down vote accepted

Boxing and unboxing is going to be the most efficient way here, to be honest. I don't know of any way of avoiding the boxing occurring, and any other form of conversion (e.g. Convert.ToInt32) is potentially going to perform conversions you don't actually want.

link|improve this answer
Thank you for confirming my thoughts on boxing/unboxing. Calling Convert would indeed be slower as there's an added overhead of calling as well as the boxing/unboxing that would occur anyway: Convert.ToInt32(object value) takes object so T would be boxed at this point and then unboxed at some point later. – Aleksey Bieneman May 19 '10 at 17:32
feedback
Convert.ToInt32(value); 

Should do it.

link|improve this answer
feedback

int and the other CLR primitives implement IConvertible.

public class Test
{
    void DoSomething<T>(T value) where T : IConvertible
    {
        var type = typeof(T);
        if (type == typeof(int))
        {
            int y = value.ToInt32(CultureInfo.CurrentUICulture);
        }
    }
}
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.