摘要:
Int32 result = -1;if (Int32.TryParse("210s", out result)){ // Parsing succeeds, now you can safely use the value.}else{ // Parsing fails, this route is faster.} Int32 result = -1;try{ result ...
阅读全文
posted @ 2008-12-23 14:46
茹古涵今
阅读(308)
推荐(0)
编辑
摘要:
Convert.ToInt32、int.Parse(Int32.Parse)、int.TryParse、(int) 四者都可以解释为将类型转换为 int,那它们的区别是什么呢? Convert.ToInt32 与 int.Parse 较为类似,实际上 Convert.ToInt32 内部调用了 int.Parse: Convert.ToInt32 参数为 null 时,返回 0; int.Pa...
阅读全文
posted @ 2008-12-23 14:43
茹古涵今
阅读(14142)
推荐(3)
编辑