repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2008-05-05 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
tests
/
gtest-friend-04.cs
blob
c53619622c5f3ef314e4d7483273f803588b7426
1
// Compiler options: -r:gtest-friend-00-lib.dll -keyfile:InternalsVisibleTest2.snk
2
using
System
;
3
4
public class
Test
5
{
6
static void
Main
()
7
{
8
// We should be able to access them
9
new
InternalFriendClass
();
10
new
FriendClass
.
NestedInternalClass
();
11
new
FriendClass
.
NestedProtectedInternalClass
();
12
}
13
}
14