I'm working on creating my own DI framework that creates delegate factories as a learning exercise. My way of building typed delegates is to use expressions to create a function that calls a static method with reference to my container and any constructor params.
This thrown up an interesting question with regards to value types. Which is the most performant:
a) Using reflection to select a static generic method with the correct number of parameters then use MakeGenericMethod to remove the generics
b) Go for the old fashion params Object[] and take the hit on boxing?
typeof(T1)
,typeof(T2)
etc... – Unific