Reputation: 12203
I was wondering if someone can confirm that App.Config file is cached by CLR in the AppDomain and not read everytime you try to read the value?
Upvotes: 0
Views: 2817
Reputation: 7273
It is loaded at start-up. Reads will reflect whatever the app.config file said at that point.
Upvotes: 3