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

[C#]"23.00"可以转换成int吗

时间:2017-08-07 22:06:02      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:text   try   out   .com   res   console   result   小数点   ble   

在C# 中想要将String类型转换成int时有以下几种方法:

  int.TryParse;

  Convert.Toint32;

  (int)string;

但是,

 使用Convert.ToInt32(string) 会出现输入字符串格式错误问题。

 使用Int.TryParse(string)也会转换失败,不会错误,会输出默认的0

解决方案是使用Decimal或者Double去转换

(1)使用Decimal.Parse

string a = "23.00";

decimal c = decimal.Parse(a);
Console.WriteLine("result:{0}", (int)c);
(2)使用Double.Parse
string a = "23.00";
Double c = Double.Parse(a);
Console.WriteLine("result:{0}", (int)c);

注:当使用(int)string强行转换的时候你会发现如果带有小数点系统会被自动忽略。

       如果使用Convert.ToInt32转换时系统会四舍五入。

附:如何实现一个类型的扩展类。

public static class ObjectExtension

{
    public static int ToInt(this object obj)
    {
        int result = default(int);
 
        if (obj != null && obj != DBNull.Value)
        {
            int.TryParse(obj.ToString(), out result);
        }
 
        return result;
    }
}
参考:http://www.lorna.com.cn/Articles/Index/402055dd-1da6-452f-9071-62217754e233

 

 

[C#]"23.00"可以转换成int吗

标签:text   try   out   .com   res   console   result   小数点   ble   

原文地址:http://www.cnblogs.com/weimingxin/p/7301071.html

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