7 public static int Main (string[] args
) {
12 repeat
= Convert
.ToInt32 (args
[0]);
14 Console
.WriteLine ("Repeat = " + repeat
);
16 object a
= new Test ();
18 for (int i
= 0; i
< (repeat
* 5000); i
++)
19 for (int j
= 0; j
< 100000; j
++)
20 if (((Test
)a
).tmp
!= 1)