vote up 7 vote down star
2

If I want a method that returns the default value of a given type and the method is generic I can return a default value like so:

public static T GetDefaultValue()
{
  return default(T);
}

Can I do something similar in case I have the type only as a System.Type object?

public static object GetDefaultValue(Type type)
{
  //???
}
flag

62% accept rate

2 Answers

vote up 13 vote down check

Since you really only have to worry about value types (reference types will just be null), you can use Activator.CreateInstance to call the default constructor on them.

public static object GetDefaultValue(Type type) {
   return type.IsValueType ? Activator.CreateInstance(type) : null;
}

Edit: Jon is (of course) correct. IsClass isn't exhaustive enough - it returns False if type is an interface.

link|flag
4  
Better to use !type.IsValueType, to cope with interfaces. – Jon Skeet Aug 15 at 6:31
thanks guys! that's what I was looking for! – Patrick Klug Aug 17 at 0:44
vote up 1 vote down

Without a generic, you can't guarantee that the type has a parameterless constructor, but you can search for one using reflection:

public static object GetDefaultValue(Type type)
{
    ConstructorInfo ci = type.GetConstructor( new Type[] {} );
    return ci.Invoke( new object[] {} );
}

I tried this in a console app, and it returns a "default" instance of the class — assuming it's a class. If you need it to work for reference types as well, you'll need an additional technique.

link|flag
1  
THe default value for reference type is null, and not an instance of the class. So if he does what you suggest GetDefault(T) will return null while GetDefault(Type) will try to make an instance if possible, which is wrong. You technique is not useless but I guess it is more like a "T GetInstance(T) where T : new() {return new T();}" type of method. – JohannesH Aug 15 at 5:22
I see what you mean. Thanks for the correction! – harpo Aug 15 at 16:42

Your Answer

Get an OpenID
or

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