Asdfg
Asdfg

Reputation: 12203

is app.config file in WinForms cached by .Net framework?

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

Answers (1)

Nik
Nik

Reputation: 7273

It is loaded at start-up. Reads will reflect whatever the app.config file said at that point.

Upvotes: 3

Related Questions