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
Function in this post Faster alternative to decimal.Parse is based on Jeffrey Sax's code. It adds support for negative numbers, optimizes performance by caching input.Length into a variable and works also for larger numbers.