有如下接口
public interface IFoo<T> : IComparable<IPayRecordField<T>> where T : IComparable
我想用实现 Foo 自动填充 IFoo 的所有属性。使用结构图
例子
class SomeClass
{
IFoo<string> MyFoo {get; set;} //this should be autofilled by structuremap with an instance of Foo<string>
}