views:

91

answers:

1

Hey,

Here is a doubt.

The external modification/updation in application configuration files for .net - app.config, web.config - would be applicable at run-time? Or the application need to be restarted.?

Is this applicable for the sections in these config files?

thanks 123Developer

+2  A: 

Yes, changes to the config files are reflected at runtime when you're not in debug mode. So, a restart is not necessary.

Matt Grande