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
/
test-415-lib.cs
blob
bec8b987ff2170726e34be6402952f79e980bc72
1
// Compiler options: -t:library
2
3
using
System
;
4
public abstract class
MyTestAbstract
5
{
6
protected abstract string
GetName
();
7
8
public
MyTestAbstract
()
9
{
10
}
11
12
public void
PrintName
()
13
{
14
Console
.
WriteLine
(
"Name="
+
GetName
());
15
}
16
}