I have a class which has the following constructor
public DelayCompositeDesigner(DelayComposite CompositeObject) { InitializeComponent(); compositeObjec
You can use the following overload on CreateInstance:
public static Object CreateInstance( Type type, Object[] args )
And in your case it'd be (I think):
var designer = Activator.CreateInstance( typeof(DelayCompositeDesigner), new object[] { new DelayComposite(4) } );