Per the question above, I'm using the .net 6, with autofac actually, but TypeConverters seem to expect no argument constructors and can't leverage DI directly. ITypeDescriptorContext does inherit from IServiceProvider, but can that be configured to provide services from the IOC container and if so, then how?
I want to use the .net IOC container to inject a service that the TypeConverter that I'm setting up to handle transforming a string into an object that itself. The service itself is referencing some external configuration as well.
Assuming that this isn't impossible, is there any context as to why TypeConverters are restricted this way?