ConfigurationManagerInternalFactory
using System.Configuration.Internal;
namespace System.Configuration
{
internal static class ConfigurationManagerInternalFactory
{
private static volatile IConfigurationManagerInternal s_instance;
internal static IConfigurationManagerInternal Instance {
get {
if (s_instance == null)
s_instance = new ConfigurationManagerInternal();
return s_instance;
}
}
}
}