0

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.

B.Gen.Jack.O.Neill
  • 8,169
  • 12
  • 51
  • 79

1 Answers1

1

It could be something to do with the converter not being found in the assembly?

Why is this TypeConverter not working?

Community
  • 1
  • 1
AlexH
  • 115
  • 13