I am using the grid property with a class and associated type converter. When I moved the class and TypeConverter to a DLL, it seems that it is not being called. Cannot find how to activate typeconverter from dll.
Assembly a = Assembly.LoadFile(modulepath + elementname + ".dll");
try
{
object myobj = a.CreateInstance(objectname);
Type objecttype = myobj.GetType();
}
Appreciate any tips. Thanks.
source
share