TypeConverterAttribute

  • Thread starter Thread starter Jason
  • Start date Start date
J

Jason

Is it possible to make a TypeConverterAttribute ExpandableObjectConverter
for a class that is defined in another assembly and you have no access to?
The definition only seems to apply to the class defined immediately after
the [TypeConverterAttribute.. line

Jason
 
Jason said:
Is it possible to make a TypeConverterAttribute ExpandableObjectConverter
for a class that is defined in another assembly and you have no access to?
The definition only seems to apply to the class defined immediately after
the [TypeConverterAttribute.. line

You could try a subclass of the class you want to apply the attribute
on, then apply the attribute on that subclass. Don't know if this works,
but it's worth a try.

Frans.
 
Back
Top