2010-06-17 Geoff Norton <gnorton@novell.com>
[mono.git] / mono / benchmark / sbperf1.cs
blobf5f13747c749bba77089c222a5be6b9d1e6e50cc
1 using System.Text;
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 ();
13 return 0;