Es posible que esté utilizando un símbolo de separación de coma incorrecto o incluso haya cometido otro error al especificar el doble valor. De todos modos en tales casos debe utilizar el método Double.TryParse(), que es seguro en términos de excepción y permite especificar el proveedor de formato, básicamente cultura para ser utilizado.
public static bool TryParse(
string s,
NumberStyles style,
IFormatProvider provider,
out double result
)
The TryParse method is like the Parse(String, NumberStyles, IFormatProvider) method, except this method does not throw an exception if the conversion fails. If the conversion succeeds, the return value is true and the result parameter is set to the outcome of the conversion. If the conversion fails, the return value is false and the result parameter is set to zero.
EDIT: respuesta al comentario
if(!double.TryParse(Console.ReadLine(), out unitPrice))
{
// parse error
}else
{
// all is ok, unitPrice contains valid double value
}
También puede probar:
double.TryParse(Console.ReadLine(),
NumberStyle.Float,
CultureInfo.CurrentCulture,
out unitPrice))
¿Qué valores está ingresando? –
valores dentro de 0-10 como 4.5 o 5.5 –