문제

In the MSDN I've read this about EnumConverter:

You should never create an instance of an EnumConverter. Instead, call the GetConverter method of the TypeDescriptor class. For more information, see the examples in the TypeConverter base class.

Does anybody know why and is it true for my own implemented converters?

For example, I have class GradientColor and converter GradientColorConverter. Should I write

new GradientColorConverter().ConvertFrom(colorString) 

or

TypeDescriptor.GetConverter(typeof(GradientColor)).ConvertFrom(colorString);

Actually It works in both ways, but which is better?

도움이 되었습니까?

해결책

I think the latter TypeDescriptor.GetConverter(typeof(GradientColor)) because it allows other converters to add or extend the type converter system when the code is run in a different context (like custom control run in another application with its own custom typeconverters).

다른 팁

The latter. If you change the type converter class you code will still work. Decoupling is good.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top