Skip to content

Latest commit

 

History

History
36 lines (19 loc) · 669 Bytes

File metadata and controls

36 lines (19 loc) · 669 Bytes

 

 

 

 

 

 

Converts a WideString to double.

 


//From http://www.richelbilderbeek.nl/CppWideToDouble.htm double WideToDouble(const WideString& s) {   const AnsiString a(s);   return a.ToDouble(); }