Custom COM class factory for managed in-proc server
问题 I'm looking at implementing custom COM activation logic for a managed class library, in MkParseDisplayName/BindToObject manner. This way, creating an object from VB might look like this: obj = GetObject("clsid:12341234-1234-1234-1234-123412341234:!UniqueObjectId") That would not be a problem for an out-of-proc server (using CoRegisterClassObject ). However, for an in-proc server, I'd need to alter the implementation of DllGetClassObject , which is normally provided by mscoree.dll . Is this