Ejemplo n.º 1
0
        public static double Get(
            string key,
            double defaultValue,
            string description)
        {
            if (Api.IsClient)
            {
                return(defaultValue);
            }

            return(ServerCore.GetValueFromConfig(
                       key,
                       defaultValue,
                       description));
        }