I have created my TypeConverter
for enum localization, registered it to MyEnum
type using [TypeConverter(typeof(MyEnum))]
and it works well in my Windows Forms Application project.
But now I need to use that same converter in Class Library project, and suddenly my TypeConverter
class does not get instantiated at all. Is there any step or setting I am missing to get [TypeConverter]
attribute working in Class Libary project? Thank you.