65.9K
CodeProject is changing. Read more.
Home

Alternative to Activator.CreateInstance

emptyStarIconemptyStarIconemptyStarIconemptyStarIconemptyStarIcon

0/5 (0 vote)

Jan 26, 2012

CPOL
viewsIcon

18018

The final solution after much debate and optimization:public class DynamicInitializer { static readonly Dictionary> list = new Dictionary>(); public static T New() where T : class { return New(typeof...