Reduce TLS accesses. (#11487)
[mono-project.git] / mono / tests / appdomain-loader.cs
blobe9d60e29cbe88e0b70185be6dd8000c42f66aba9
1 using System;
3 class Driver {
4 static void Main () {
5 for (int i = 0; i < 10; ++i) {
6 var ad = AppDomain.CreateDomain ("ad3");
7 ad.ExecuteAssembly ("appdomain-tester.exe", null, null);
8 AppDomain.Unload (ad);