现在的位置: 首页 > 综合 > 正文

园子的兄弟们,看看自己的基本功

2011年06月09日 ⁄ 综合 ⁄ 共 578字 ⁄ 字号 评论关闭

public static void Main(string[] args)
        {
            bool t=false;
        abc:
            Console.WriteLine("biaoti");
            if (t==false)
            {
                try
                {
                    int a=0;
                    int b=a/a;
                }
                catch (Exception)
                {
                    t=true;
                    goto abc;
                }
                finally
                {
                    Console.WriteLine("abc");
                }
                Console.Write("Press any key to continue . . . ");
            }
            Console.ReadKey(true);
        }

抱歉!评论已关闭.