ConfigReader icon indicating copy to clipboard operation
ConfigReader copied to clipboard

Type-safe, convention-over-configuration access to the .Net application configuration, web.config, or other configuration source.

Results 4 ConfigReader issues
Sort by recently updated
recently updated
newest added

Fixing issue 3 (https://github.com/troygoode/ConfigReader/issues/3) by ignoring properties read from .config file that are not present in the interface representing the config

Steps to reproduce: 1. Follow the instructions in steps 1-3 of the instruction at https://github.com/troygoode/ConfigReader/blob/master/README.markdown 2. Go to the app.config/web.config file and add an entry that is not represented in...

When used without default values, only with the interface. In case some parameter is missing in the config file, throw an exception saying that parameter is missing. public interface IMailNotificationSettings{...

I would like the following scenario to be supported: ``` public interface IA { double Distance { get; } } public interface IB : IA { int Duration { get;...