I am invoking a method on a type via reflection which takes a couple of parameters:
var myType = typeof(myClass);
var myMethod = myType.GetMethod("myMethodInClass",
new[] { typeof(string), typeof(string) });
myMethod.Invoke(?, new object[] { "", "" });
I want the target to be an IDataReader, which is what the method will return, but I obviously cannot instantiate a new instance of an interface.