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
[2020-02] Avoid following invalid pointers in mono_w32process_get_modules on Darwin...
[mono-project.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
}