How to bind app.config in .Net?
Say, if I have an application project that references a class library project. The ConfigurationManager.AppSettings["MySetting"] code in the class library project will read the value from app.config from the application project. Do I understand correctly?
So how about if we have a class 2 library project, say A and B, when A refers to B. So, ConfigurationManager.AppSettings["MySetting"] will read the value from app.config in project A?
Thanks in advance.
source share