repo.or.cz
/
mono-debugger.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2009-03-11 Zoltan Varga <vargaz@gmail.com>
[mono-debugger.git]
/
mono
/
tests
/
marshalbyref1.cs
blob
445c3ca4804010e3a023a19f21fd8148077bbb16
1
class
Base
:
System
.
MarshalByRefObject
{
2
public virtual void
method
() {
3
}
4
}
5
6
class
Derived
:
Base
{
7
public override void
method
() {
8
base
.
method
();
9
}
10
static void
Main
() {
11
Derived d
=
new
Derived
();
12
d
.
method
();
13
}
14
}