码迷,mamicode.com
首页 > Windows程序 > 详细

C#中将string转换为float

时间:2017-06-24 21:00:53      阅读:325      评论:0      收藏:0      [点我收藏+]

标签:ring   blog   ons   color   str   string转换   c#   log   logs   

            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

标签:ring   blog   ons   color   str   string转换   c#   log   logs   

原文地址:http://www.cnblogs.com/tanrong/p/7074253.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!