コード例 #1
0
ファイル: Form1.cs プロジェクト: sscctech/CodePerspective
            public int DivideByZero()
            {
                var a = new ExtremeNested();

                int x = a.ExtremeThings();

                x++;

                int y = 1;

                y--;

                return(x / y);
            }
コード例 #2
0
ファイル: Form1.cs プロジェクト: swax/CodePerspective
            public int DivideByZero()
            {
                var a = new ExtremeNested();

                int x = a.ExtremeThings();
                x++;

                int y = 1;
                y--;

                return x / y;
            }