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
2010-02-20 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
tests
/
gtest-friend-09.cs
blob
1d592c816ba211be083e9a227ca164fa307bde28
1
// Compiler options: -r:gtest-friend-02-lib.dll -keyfile:InternalsVisibleTest2.snk
2
using
System
;
3
4
public class
Test
5
{
6
static void
Main
()
7
{
8
FriendClass fc
=
new
FriendClass
();
9
10
// We should be able to access them
11
FriendClass
.
StaticFriendMethod
();
12
fc
.
InstanceFriendMethod
();
13
}
14
}
15