Ejemplo n.º 1
0
 public BindCmd(string pKet, Executable command) : this(pKet, new Executable[] { command })
 {
 }
Ejemplo n.º 2
0
        public static double CoerceNumber(double value, bool asInteger)
        {
            string formattedDefaultStrValue = Executable.FormatNumber(value, asInteger);

            return(double.Parse(formattedDefaultStrValue, CultureInfo.InvariantCulture));
        }