| 
								        
								         
								        Explain the different types of configuration files provided by .NET framework? - Machine configuration file, Application configuration file, Security configuration file.The different types of configuration files provided by .NET framework are:
 - enterprisesec.config which configures the enterprise-level security policies.
 - security.config which configures machine-level security policies.
 - machine.config which contains the installation settings.
 - app.config or web.config which are used to modify the default settings of the machine.config file.
 |