c# 整型資料與字串 的之間互換

iDotNetSpace發表於2008-09-04

整型資料轉換為字串

方法一: 用到 convet 類裡的tostring 方法 

 int f = b + d;
 textBox3.Text = Convert.ToString (f);
 

方法二: 用到了Int 類的 tostring 方法

 int f = b + d;
 textBox3.Text = f.ToString ();
 

字串轉換為整型資料 

方法一:int a = Convert.ToInt32("123"); 用到了Convert 類

方法二:     int b = int.Parse("456");   用到了Int 類 

總結:

轉換之間,Convert 類有很多方法可以呼叫,推薦!

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/12639172/viewspace-441791/,如需轉載,請註明出處,否則將追究法律責任。

相關文章