C# 將字串轉換為數值( String -> int )

C# 將字串轉換為數值( String -> int )

C# 將字串轉換為數值( String -> int ) [字串 轉 整數]



資料來源:https://msdn.microsoft.com/zh-tw/library/bb397679….


Code

try
{
    int m = Int32.Parse("abc");
}
catch (FormatException e)
{
    Console.WriteLine(e.Message);
}


發表迴響

你的電子郵件位址並不會被公開。 必要欄位標記為 *