Converting string to double - C# / C Sharp
SMichal wrote: Hi, how can I parse string "? 20.000" to double ? Well, you obviously need to remove the '?' character and space before it can be parsed to any numerical format. So I would use the Split() function to remove the '?' character and the Trim()...