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


基础教程推荐
- 如果条件可以为空 2022-01-01
- 更新 Visual Studio 中的 DataSet 结构以匹配新的 SQL 数据库结构 2022-01-01
- 重新排序 WPF TabControl 中的选项卡 2022-01-01
- 将数据集转换为列表 2022-01-01
- 从 C# 控制相机设备 2022-01-01
- Mono https webrequest 失败并显示“身份验证或解密失败" 2022-01-01
- 获取C#保存对话框的文件路径 2022-01-01
- SonarQube C# 分析失败“不是指针的有效行偏移" 2022-01-01
- 在 VB6 或经典 ASP 中使用 .NET 2022-01-01
- C# 9 新特性——record的相关总结 2023-04-03