Skip to content
This repository was archived by the owner on Sep 9, 2025. It is now read-only.

Coderrob/AppSettings

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 

Repository files navigation

C# AppSettings Utility

Quick and simple wrapper around the .Net ConfigurationManager accessing AppSettings from app.config.

Example uses:

// Get a string value from the AppSettings by default
AppSettings.Get("")

// Get an int value from the AppSettings
AppSettings.Get<int>("TimeoutValue")

// A safe check around getting a numeric value
long value;
AppSettings.TryGet<long>("IsntNumericValue", out value)

About

C# wrapper around .Net ConfigurationManager.AppSettings

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages