Dependency requirements are forcing me to have a class and its TypeConverter in different
assemblies.
Is there a way to assign a TypeConverter to a class without using a TypeConverterAttribute, and thus causing circular assembly references.
Thanks.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Hmm, not sure I’ve seen this before, but you could add the TypeConverterAttribute at runtime using a TypeDescriptor, so given my sample classes:
I could then have a method:
Hope that helps.