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?

typevariable? 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