0
Loading objects from App.Config
Posted by lorenb on Dec 2, 2004 in projects
Changed the way I was using app.config in Sussen. I’m now loading elements and attributes and creating objects based on those. To do that I first changed the app.config: <configSections> <section name=”logger” type=”Sussen.Util.Logger,Sussen.Util” / > </configSections> <logger level=”info” output=”console” filename=”" / > Then change the Logger class to implement the IConfigurationSectionHandler interface. public class Logger [...]