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); }
資料來源:https://msdn.microsoft.com/zh-tw/library/bb397679….
Code
try { int m = Int32.Parse("abc"); } catch (FormatException e) { Console.WriteLine(e.Message); }