vote up 2 vote down star

I'm trying to create a generic method to cast an object, but can't seem to crack that chestnut. (It's Friday 3pm, been a long week)

Ok, so I have this scenario:

// We have a value (which .net sets as a double by default)
object obj = 1.0;

// We have the target type as a string, which could be anything:
// say string sometType = "System.Decimal"
Type type = Type.GetType(someType);

// I need a generic way of casting this
object castedObj = (xxx) obj;

How can I cast that object generically without creating an endless number of if-else-staments?

flag

Do you want to type cast it to the type represented by the type variable? How would you declare the castedObj? I.e what type would you give it? There's no point typecasting if you store it as an object anyway... – Isak Savo Oct 23 at 13:17
You cannot cast a boxed int to any struct type other than int (or int?) (See blogs.msdn.com/ericlippert/archive/… for details.) If you need to do this then you need to use something other than a cast. – Eric Lippert Oct 23 at 16:26

4 Answers

vote up 4 vote down check

You can use Convert.ChangeType method, if the types you use implement IConvertible (all primitive types do).

    Convert.ChangeType(value, targetType);
link|flag
vote up 1 vote down

Have a look at the Convert.ChangeType method, I think it will meet your needs.

link|flag
vote up 0 vote down

You can't cast it to a type you specify dynamically.

You may consider using generics instead, but I would need more code to see how it can help you.

link|flag
vote up 0 vote down

You can do something like the following:

    Type underlyingType = Type.GetType(someType);


    if (underlyingType.IsGenericType && underlyingType.GetGenericTypeDefinition().Equals(typeof (Nullable<>)))
    {
        var converter = new NullableConverter(underlyingType);
        underlyingType = converter.UnderlyingType;
    }

    // Try changing to Guid  
    if (underlyingType == typeof (Guid))
    {
        return new Guid(value.ToString());
    }
    return Convert.ChangeType(value, underlyingType);

Kudos to Monsters Go My.net for the change type function

link|flag

Your Answer

Get an OpenID
or

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