What would be correct way to create new instance of the class from class type? The code below do not work, CreateInstance accepts only strings.
Type converter=null;
converter = convertApiModelBase.Type;
return Assembly.GetExecutingAssembly().CreateInstance(converter);
Use
Activator.CreateInstance: