我在解决autofac中的依赖项时遇到问题。它可能与类型上的 co/contra 差异有关。
以下程序返回 0、1。这意味着对 resolve 的两个调用不会返回相同的类型(而它是用于获取类型的相同对象)我希望它返回:1,1。(不同的是我的var的静态类型不同,有没有办法使用运行时类型?)
谢谢
IContainer _container;
void Main()
{
var builder = new ContainerBuilder();
builder.RegisterType<AHandler>().As<IHandler<A>>();
_container = builder.Build();
IBase a = new A();
Console.WriteLine(Resolve(a));
A b = new A();
Console.WriteLine(Resolve(b));
}
int Resolve<T>(T a) where T:IBase
{
return _container.Resolve<IEnumerable<IHandler<T>>>().Count();
}
// Define other methods and classes here
interface IBase{}
interface IHandler<T> where T:IBase {}
class A : IBase{}
class AHandler : IHandler<A>{}