Alternative to Activator.CreateInstance





0/5 (0 vote)
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...