dadhi / DryIoc

DryIoc is fast, small, full-featured IoC Container for .NET
MIT License
1.01k stars 123 forks source link

RegisterInstance missing Reuse #566

Closed HypeillingerChillinger closed 1 year ago

HypeillingerChillinger commented 1 year ago

In RegisterInstance a reuse is probably missing. What if I wanted to use an interface with RegisterInstance but different implementations and scoped for different Reuse.ScopedForService?

dadhi commented 1 year ago

Mm, you can try to use a RegisterDelegate for this matter. Just return your instance from the delegate.

HypeillingerChillinger commented 1 year ago

Ok, thanks