DryIoc
DryIoc copied to clipboard
Make feature parity of Tuple and ValueTuple
For:
wrappers = wrappers.AddOrUpdate(typeof(Tuple<,>),
new ExpressionFactory(GetMetaExpressionOrDefault, setup: Setup.WrapperWith(0)));
For:
wrappers = wrappers.AddOrUpdate(typeof(ValueTuple<,>),
new ExpressionFactory(GetMetaExpressionOrDefault, setup: Setup.WrapperWith(0)));
I guess this could make registration of meta even more fancier.
Still makes sense!