I create a c# dynamic object of a COM-Object on the fallowing way:
dynamic pdfCreator = Activator.CreateInstance( Type.GetTypeFromProg
I ended up using following as other options did not work. You might have to use generic of < T > if your EventHandler is a generic
pdfCreator.eReady += new System.EventHandler(_PDFCreator_eReady);