public interface IFoo<T> : IComparable<IPayRecordField<T>> where T : IComparable
我想自動填充與實施美孚的IFoo的所有屬性。使用Structuremap
例如
class SomeClass
{
IFoo<string> MyFoo {get; set;} //this should be autofilled by structuremap with an instance of Foo<string>
}
爲什麼你不使用構造函數注入? – Steven