本帖最后由 许大虾 于 2013-6-4 13:14 编辑
- <P>string s = "123abc";
- int re;
- if (IntTryParse(s, out re))
- {
- Console.WriteLine("Successful conversion" + re);
- }
- else
- {
- Console.WriteLine("Conversion failed");
- }
- Console.ReadKey();</P>
- <P> }</P>
- <P>static bool IntTryParse(string s, out int result)
- {
- result = 0;
- try
- {
- result = Convert.ToInt32(s);
- return true;
- }
- catch
- {
- return false;
- }
- }</P>
复制代码 嘿嘿 速来个解释下这段代码 int re 和方法中的 out int result是什么关系 |