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; }
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); }
static void Test(VT vt) { result = (vt.bool1 && vt.bool2 && vt.bool3 && vt.bool4); }