IsValueType() public static method

public static IsValueType ( this type ) : bool
type this
return bool
Exemplo n.º 1
0
 public static object CreateDefaultValue(Type type)
 {
     return(TypeExtensions.IsValueType(type) ? CreateObject(type) : null);
 }