The System.Activator class contains methods to create types of objects locally or remotely, or obtain references to existing remote objects. It is the most common entry point for dynamic instantiation in the .NET Framework. Basic Instantiation with Activator.CreateInstance
In 4.6.1, this is typically wired up in the Global.asax.cs under Application_Start() , moving away from hard-coded dependencies toward a managed service provider. Key .NET 4.6.1 Release Highlights activators dotnet 4.6.1
This article will untangle the confusion, explaining what ".NET Framework 4.6.1" is, what "activation" means in this context, and how to get the framework working for you. The System