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

【你吐吧c#每日学习】11.10 C# Data Type conversion

时间:2014-11-10 21:32:08      阅读:238      评论:0      收藏:0      [点我收藏+]

标签:io   ar   sp   on   bs   line   res   学习   type   

implicit

explicit

float f=12123456.213F

 

int a = Convert.ToInt32(f); //throw exception or

int a = (int)f; // not throw exception nut got an overflow value

 

parse and tryparse

string to other datatype

string a="100fh";

int num=int.Parse(a); //throw exception

int result=0;

bool isNum=int.TryParse(num,out result);

if(isNum){ Console.WriteLine(result);

}else{

Console.WriteLine("Invalid")}

【你吐吧c#每日学习】11.10 C# Data Type conversion

标签:io   ar   sp   on   bs   line   res   学习   type   

原文地址:http://www.cnblogs.com/jin-wen-xin/p/4087879.html

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