ConfigurationManagerInternalFactory
using System.Configuration.Internal;
namespace System.Configuration
{
internal static class ConfigurationManagerInternalFactory
{
private static volatile IConfigurationManagerInternal s_instance;
internal static IConfigurationManagerInternal Instance => s_instance ?? (s_instance = new ConfigurationManagerInternal());
}
}