Ejemplo n.º 1
0
        static int Main(string[] args)
        {
            VT vt = new VT();
            vt.bool1 = true;
            vt.bool2 = false;
            vt.bool3 = true;
            vt.bool4 = false;

            for (int i = 0; i < 100; i++)
                Test(vt);

            return 100;
        }
Ejemplo n.º 2
0
        static int Main(string[] args)
        {
            VT vt = new VT();

            vt.bool1 = true;
            vt.bool2 = false;
            vt.bool3 = true;
            vt.bool4 = false;

            for (int i = 0; i < 100; i++)
            {
                Test(vt);
            }

            return(100);
        }
Ejemplo n.º 3
0
 static void Test(VT vt)
 {
     result = (vt.bool1 && vt.bool2 && vt.bool3 && vt.bool4);
 }
Ejemplo n.º 4
0
 static void Test(VT vt)
 {
     result = (vt.bool1 && vt.bool2 && vt.bool3 && vt.bool4);
 }