[asp.net] Optimize memory usage a bit. String hashes are cached in thread-local storage.
[mono.git] / mcs / tests / gtest-235.cs
1 // Compiler options: /r:gtest-235-lib.dll
2 using System;
3
4 class GettingStarted
5 {
6         public static void Main ()
7         {
8                 MyList<string> names = new MyList<string> ();
9                 names.AddAll<string> ();
10         }
11 }