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
Merge pull request #4926 from BrzVlad/fix-tls-v5
[mono-project.git]
/
mcs
/
errors
/
CS0534-3-lib.cs
blob
d6783645d6e1db4060560ade49f9b2e39dbe3437
1
using
System
;
2
public abstract class
MyTestAbstract
3
{
4
protected abstract string
GetName
();
5
6
public
MyTestAbstract
()
7
{
8
}
9
10
public void
PrintName
()
11
{
12
Console
.
WriteLine
(
"Name="
+
GetName
());
13
}
14
}