I have a small class that holds two strings as follows:
public class ReportType { private string displayName; public string DisplayNa
Just a bit more clear code then Charlie's
public class ReportType { public static ReportType CreateDefaults() { return new ReportType { DisplayName = ConfigurationManager.AppSettings["DefaultDisplayName"], ReportName = ConfigurationManager.AppSettings["DefaultReportName"] }; } }