public static LaunchPadSection GetSection()
        {
            if (section == null)
            {
                var config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);
                return section = (LaunchPadSection) config.GetSection("launchPad");
            }

            return section;
        }
Example #2
0
        public static LaunchPadSection GetSection()
        {
            if (section == null)
            {
                var config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);
                return(section = (LaunchPadSection)config.GetSection("launchPad"));
            }

            return(section);
        }