Exemplo n.º 1
0
        private static bool AppSettingAsBoolOrDefault(this string Key, bool Default)
        {
            string KeyValue = Key.AppSetting();

            if (StringSupport.StringIsBoolean(KeyValue))
            {
                return(StringSupport.StringToBoolean(KeyValue));
            }
            else
            {
                return(Default);
            }
        }