string s = "123"; int byCasting = (int)s; int byParsing = int.Parse(s); int result; int.TryParse(s,out result); int byConverting = Convert.
確定! 回上一頁