Is there a faster way to convert a string to double than Convert.ToDouble?
string
double
Convert.ToDouble
I have monitored System.Conv
System.Conv
You can call double.Parse("1.34515"); which is what Convert.ToDouble wraps.
double.Parse("1.34515");
It may be quicker to call double.TryParse which will avoid the exception overhead.
double.TryParse