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-06.cs
blob
05190455052a326e31b06bc76e8a984274ecfd9e
1
// Compiler options: -r:gtest-friend-01-lib.dll
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
int
a
=
FriendClass
.
StaticFriendProperty
;
12
int
b
=
fc
.
InstanceFriendProperty
;
13
}
14
}
15