我想为泛型类创建一个TypeConverter
,如下所示:
[TypeConverter(typeof(WrapperConverter<T>))]
public class Wrapper<T>
{
public T Value
{
// get & set
}
// other methods
}
public class WrapperConverter<T> : TypeConverter<T>
{
// only support To and From strings
public override bool CanConvertFrom(ITypeDescriptorContext context, Type sourceType)
{
if (sourceType == typeof(string))
{
return true;
}
return base.CanConvertFrom(context, sourceType);
}
public override bool CanConvertTo(ITypeDescriptorContext context, Type destinationType)
{
if (destinationType == typeof(string))
{
return true;
}
return base.CanConvertTo(context, destinationType);
}
public override object ConvertFrom(ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value)
{
if (value is string)
{
TypeConverter converter = TypeDescriptor.GetConverter(typeof(T));
T inner = converter.ConvertTo(value, destinationType);
return new Wrapper<T>(inner);
}
return base.ConvertFrom(context, culture, value);
}
public override object ConvertTo(ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, Type destinationType)
{
if (destinationType == typeof(System.String))
{
Wrapper<T> wrapper = value as Wrapper<T>();
TypeConverter converter = TypeDescriptor.GetConverter(typeof(T));
return converter.ConvertTo(wrapper.Value, destinationType);
}
return base.ConvertTo(context, culture, value, destinationType);
}
}
问题在于你不能在这一行中使用泛型,它是不允许的:
[TypeConverter(typeof(WrapperConverter<T>))]
public class Wrapper<T>
我的下一个方法是尝试定义一个可以处理任何Wrapper<T>
实例的单一非泛型转换器。反思和泛型的混合让我难以理解如何实现 ConvertTo
和ConvertFrom
方法。
例如,我的ConvertTo看起来像这样:
public override object ConvertTo(ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, Type destinationType)
{
if (destinationType == typeof(System.String)
&& value.GetType().IsGenericType)
{
// 1. How do I enforce that value is a Wrapper<T> instance?
Type innerType = value.GetType().GetGenericArguments()[0];
TypeConverter converter = TypeDescriptor.GetConverter(innerType);
// 2. How do I get to the T Value property? Introduce an interface that Wrapper<T> implements maybe?
object innerValue = ???
return converter.ConvertTo(innerValue, destinationType);
}
return base.ConvertTo(context, culture, value, destinationType);
}
在ConvertFrom
中我遇到了最大的问题,因为我无法知道哪个Wrapper类将转换字符串转换为。
我已经创建了几个用于ASP.NET 4 Web API框架的自定义类型和TypeConverters,这也是我需要使用它的地方。
我尝试的另一件事是在运行时分配我的转换器的通用版本,如here所示,但WebAPI框架不尊重它(意思是,转换器从未创建过)。
最后一点,我正在使用.NET 4.0和VS 2010。
答案 0 :(得分:36)
我通过创建一个可以处理从我的泛型类中获取的所有类型的转换器来解决这个问题。了解ConvertFrom中的泛型arg T的重大问题 通过捕获构造函数中的信息来解决,如下所示。
public MyGenericConverter(Type type)
{
if (type.IsGenericType
&& type.GetGenericTypeDefinition() == typeof(MyGenericClass<>)
&& type.GetGenericArguments().Length == 1)
{
_genericInstanceType = type;
_innerType = type.GetGenericArguments()[0];
_innerTypeConverter = TypeDescriptor.GetConverter(_innerType);
}
else
{
throw new ArgumentException("Incompatible type", "type");
}
}
我花了很长时间才发现.NET基础结构在定义时反射性地调用此构造函数重载。它不是记录的TypeConverter类的一部分。
希望这一切都有助于下一个人。
答案 1 :(得分:3)
尽管@tcarvin的答案非常有趣-它在.NET Framework 4.6.1中对我有用,并且从我所见的in the code上也可以在.NET Core上工作,但是还有一种替代方法使用{{1 }}并不取决于他所描述的实现细节(构造函数接受TypeDescriptionProviderAttribute
类型的参数)。
具有:
Type
您只需要将TypeDescriptionProviderAttribute应用于目标类,例如:
public class FooTypeConverter<T> : TypeConverter { ... }
public class FooTypeDescriptor : CustomTypeDescriptor
{
private Type objectType;
public FooTypeDescriptor(Type objectType)
{
this.objectType = objectType;
}
public override TypeConverter GetConverter()
{
var genericArg = objectType.GenericTypeArguments[0];
var converterType = typeof(FooTypeConverter<>).MakeGenericType(genericArg);
return (TypeConverter)Activator.CreateInstance(converterType);
}
}
public class FooTypeDescriptionProvider : TypeDescriptionProvider
{
public override ICustomTypeDescriptor GetTypeDescriptor(Type objectType, object instance)
{
return new FooTypeDescriptor(objectType);
}
}
然后
[TypeDescriptionProvider(typeof(FooTypeDescriptionProvider))]
public class Foo<T> { }
将按预期工作。