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# 中将字符串转换为浮点数


- 如何用自己压缩一个 IEnumerable 2022-01-01
- MoreLinq maxBy vs LINQ max + where 2022-01-01
- 在哪里可以找到使用中的C#/XML文档注释的好例子? 2022-01-01
- 带有服务/守护程序应用程序的 Microsoft Graph CSharp SDK 和 OneDrive for Business - 配额方面返回 null 2022-01-01
- Web Api 中的 Swagger .netcore 3.1,使用 swagger UI 设置日期时间格式 2022-01-01
- C#MongoDB使用Builders查找派生对象 2022-09-04
- 良好实践:如何重用 .csproj 和 .sln 文件来为 CI 创建 2022-01-01
- 输入按键事件处理程序 2022-01-01
- WebMatrix WebSecurity PasswordSalt 2022-01-01
- C# 中多线程网络服务器的模式 2022-01-01