假設我們的字串是-
string str ="9999";
現在,使用Int32.Parse() 將字串轉換為整數-
int n = Int32.Parse(str);
現在顯示整數值,如下列程式碼所示-
using System; class Demo { static void Main() { string str ="9999"; int n = Int32.Parse(str); Console.WriteLine(n); } }
以上是C#中如何將字串轉換為int?的詳細內容。更多資訊請關注PHP中文網其他相關文章!