C#中将string转换为float
Posted RongT
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C#中将string转换为float相关的知识,希望对你有一定的参考价值。
string s = "123.2"; //方法1 float f1 = Convert.ToSingle(s); //方法2 float f2; if (!float.TryParse(s, out f2)) { Console.WriteLine("无法转换!"); }
float volume = 0.5F; //double 转float
以上是关于C#中将string转换为float的主要内容,如果未能解决你的问题,请参考以下文章
如何在 C# 中将 Dictionary<string, object> 转换为 Dictionary<string, string>