Converting String To Float in C#(在 C# 中将字符串转换为浮点数)
问题描述
我正在转换像41.00027357629127"这样的字符串,我正在使用;
I am converting a string like "41.00027357629127", and I am using;
Convert.ToSingle("41.00027357629127");
或
float.Parse("41.00027357629127");
这些方法返回 4.10002732E+15.
当我转换为浮点数时,我想要41.00027357629127".这个字符串应该是一样的...
When I convert to float I want "41.00027357629127". This string should be the same...
推荐答案
您的线程的语言环境设置为小数点为,"而不是.".
Your thread's locale is set to one in which the decimal mark is "," instead of ".".
试试这个:
float.Parse("41.00027357629127", CultureInfo.InvariantCulture.NumberFormat);
但是请注意,浮点数不能容纳那么多位的精度.您必须使用 double 或 Decimal 才能这样做.
Note, however, that a float cannot hold that many digits of precision. You would have to use double or Decimal to do so.
这篇关于在 C# 中将字符串转换为浮点数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 C# 中将字符串转换为浮点数
基础教程推荐
- 将 XML 转换为通用列表 2022-01-01
- 如何在 IDE 中获取 Xamarin Studio C# 输出? 2022-01-01
- 如何激活MC67中的红灯 2022-01-01
- SSE 浮点算术是否可重现? 2022-01-01
- MS Visual Studio .NET 的替代品 2022-01-01
- 为什么Flurl.Http DownloadFileAsync/Http客户端GetAsync需要 2022-09-30
- rabbitmq 的 REST API 2022-01-01
- 将 Office 安装到 Windows 容器 (servercore:ltsc2019) 失败,错误代码为 17002 2022-01-01
- 有没有办法忽略 2GB 文件上传的 maxRequestLength 限制? 2022-01-01
- c# Math.Sqrt 实现 2022-01-01