public static bool ImplementsGenericDefinition(Type type, Type genericInterfaceDefinition, out Type implementingType) { ValidationUtils.ArgumentNotNull((object)type, "type"); ValidationUtils.ArgumentNotNull((object)genericInterfaceDefinition, "genericInterfaceDefinition"); if (!TypeExtensions.IsInterface(genericInterfaceDefinition) || !TypeExtensions.IsGenericTypeDefinition(genericInterfaceDefinition)) { throw new ArgumentNullException(StringUtils.FormatWith("'{0}' is not a generic interface definition.", (IFormatProvider)CultureInfo.InvariantCulture, (object)genericInterfaceDefinition)); } if (TypeExtensions.IsInterface(type) && TypeExtensions.IsGenericType(type)) { Type genericTypeDefinition = type.GetGenericTypeDefinition(); if (genericInterfaceDefinition == genericTypeDefinition) { implementingType = type; return(true); } } foreach (Type type1 in type.GetInterfaces()) { if (TypeExtensions.IsGenericType(type1)) { Type genericTypeDefinition = type1.GetGenericTypeDefinition(); if (genericInterfaceDefinition == genericTypeDefinition) { implementingType = type1; return(true); } } } implementingType = (Type)null; return(false); }
public static object Convert(object initialValue, CultureInfo culture, Type targetType) { if (initialValue == null) { throw new ArgumentNullException("initialValue"); } if (ReflectionUtils.IsNullableType(targetType)) { targetType = Nullable.GetUnderlyingType(targetType); } Type type = initialValue.GetType(); if (targetType == type) { return(initialValue); } if (ConvertUtils.IsConvertible(initialValue) && ConvertUtils.IsConvertible(targetType)) { if (TypeExtensions.IsEnum(targetType)) { if (initialValue is string) { return(Enum.Parse(targetType, initialValue.ToString(), true)); } if (ConvertUtils.IsInteger(initialValue)) { return(Enum.ToObject(targetType, initialValue)); } } return(Convert.ChangeType(initialValue, targetType, (IFormatProvider)culture)); } else { if (initialValue is string && typeof(Type).IsAssignableFrom(targetType)) { return((object)Type.GetType((string)initialValue, true)); } if (TypeExtensions.IsInterface(targetType) || TypeExtensions.IsGenericTypeDefinition(targetType) || TypeExtensions.IsAbstract(targetType)) { throw new ArgumentException(StringUtils.FormatWith("Target type {0} is not a value type or a non-abstract class.", (IFormatProvider)CultureInfo.InvariantCulture, (object)targetType), "targetType"); } if (initialValue is string) { if (targetType == typeof(Guid)) { return((object)new Guid((string)initialValue)); } if (targetType == typeof(Uri)) { return((object)new Uri((string)initialValue, UriKind.RelativeOrAbsolute)); } if (targetType == typeof(TimeSpan)) { return((object)TimeSpan.Parse((string)initialValue)); } } TypeConverter converter1 = ConvertUtils.GetConverter(type); if (converter1 != null && converter1.CanConvertTo(targetType)) { return(converter1.ConvertTo((ITypeDescriptorContext)null, culture, initialValue, targetType)); } TypeConverter converter2 = ConvertUtils.GetConverter(targetType); if (converter2 != null && converter2.CanConvertFrom(type)) { return(converter2.ConvertFrom((ITypeDescriptorContext)null, culture, initialValue)); } if (initialValue == DBNull.Value) { if (ReflectionUtils.IsNullable(targetType)) { return(ConvertUtils.EnsureTypeAssignable((object)null, type, targetType)); } else { throw new Exception(StringUtils.FormatWith("Can not convert null {0} into non-nullable {1}.", (IFormatProvider)CultureInfo.InvariantCulture, (object)type, (object)targetType)); } } else if (initialValue is INullable) { return(ConvertUtils.EnsureTypeAssignable(ConvertUtils.ToValue((INullable)initialValue), type, targetType)); } else { throw new InvalidOperationException(StringUtils.FormatWith("Can not convert from {0} to {1}.", (IFormatProvider)CultureInfo.InvariantCulture, (object)type, (object)targetType)); } } }
public static bool IsInstantiatableType(Type t) { ValidationUtils.ArgumentNotNull((object)t, "t"); return(!TypeExtensions.IsAbstract(t) && !TypeExtensions.IsInterface(t) && (!t.IsArray && !TypeExtensions.IsGenericTypeDefinition(t)) && (t != typeof(void) && ReflectionUtils.HasDefaultConstructor(t))); }
private static DynamicMethod CreateDynamicMethod(string name, Type returnType, Type[] parameterTypes, Type owner) { return(!TypeExtensions.IsInterface(owner) ? new DynamicMethod(name, returnType, parameterTypes, owner, true) : new DynamicMethod(name, returnType, parameterTypes, owner.Module, true)); }