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-03-30 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
CS0534-4-lib.cs
blob
aeb09dd33b0c535e540cc1cd62af0d1251d982cc
1
using
System
;
2
public abstract class
MyTestAbstract
3
{
4
internal abstract string
GetName
();
5
6
public
MyTestAbstract
()
7
{
8
}
9
10
public void
PrintName
()
11
{
12
Console
.
WriteLine
(
"Name="
+
GetName
());
13
}
14
}