我可以像这样获取构造函数参数的类型:
Type type = paramInfo.ParameterType;
现在我想从这种类型创建存根对象。有可能吗?我尝试使用自动固定装置:
public TObject Stub<TObject>()
{
Fixture fixture = new Fixture();
return fixture.Create<TObject>();
}
..但它不起作用:
Type type = parameterInfo.ParameterType;
var obj = Stub<type>();//Compile error! ("cannot resolve symbol type")
你能帮帮我吗?