Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mono / benchmark / sbperf1.cs
1 using System.Text;
2
3 namespace test {
4         public class Test {
5                 public static int Main() {
6                         for (int i = 0; i < 500000; i++) {
7                            StringBuilder sb = new StringBuilder ();
8                            sb.Append ("hello");
9                            sb.Append (" world!");
10                            sb.ToString ();
11                         }
12
13                         return 0;
14                         
15                 }
16         }
17 }