_>std::wstring double2wstring (double n) _>{ _> std::wostringstream os; _> os.imbue (std::locale::classic()); _> os << n; _> return os.str(); _>} _>