Skip to content

Instantly share code, notes, and snippets.

@leojh
Created November 3, 2012 22:21
Show Gist options
  • Save leojh/4009097 to your computer and use it in GitHub Desktop.
Save leojh/4009097 to your computer and use it in GitHub Desktop.
Strongly Typed Application Settings
//THE BAD
System.Console.WriteLine(ConfigurationManager.AppSettings["ConfigSettings.SampleSetting1"]);
System.Console.WriteLine(ConfigurationManager.AppSettings["ConfigSettings.SampleSetting2"]);
//THE BETTER
System.Console.WriteLine(settings.SampleSetting1);
System.Console.WriteLine(settings.SampleSetting2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment