Is it possible to create an instance of a COM object with just the dll and no regsvr32?
My main goal here is to create an instance of a directshow filter and insert it into my graph-but I don't want to us regsvr32 to register the filter. The filter will be in a dll/ax that will be distributed with my application and will be present in my path. I will know the CLSID as well.
So basically all I need is a way to create an instance of the type while just having the dll/ax and the CLSID. Is this possible in C#?