repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Reduce TLS accesses. (#11487)
[mono-project.git]
/
mono
/
tests
/
appdomain-loader.cs
blob
e9d60e29cbe88e0b70185be6dd8000c42f66aba9
1
using
System
;
2
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
);
9
}
10
}
11
}