Activators Dotnet 4.6.1 Site
// The Activator instantiates the generic list var customerList = (IList)Activator.CreateInstance(concreteType);
: During or immediately after installation, you may notice high CPU usage from activators dotnet 4.6.1
If you need to create thousands of instances of the same type dynamically, consider using Compiled Expressions or IL Emit to create a delegate. This bypasses the overhead of Activator for subsequent calls. Error Handling // The Activator instantiates the generic list var
