How is the app.config binding in .Net?
Let's say if I have an application project referencing a class library project. The code ConfigurationManager.AppSettings["MySetting"]
in the class library project will read the value from app.config from the application project. Is my understanding correct?
So how about if we have 2 class library project, let's say A and B while A is referencing B. So will ConfigurationManager.AppSettings["MySetting"]
read the value from app.config in project A?
Thanks in advance.