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
tag rc1
[mcs.git]
/
errors
/
cs0505-2.cs
blob
cf64453d0b5a29882f7c0e540e7e9abb9f06613e
1
// CS0505: `DerivedClass.value()': cannot override because `BaseClass.value' is not a method
2
// Line: 9
3
4
using
System
;
5
6
class
BaseClass
{
7
protected int value
;
8
}
9
10
class
DerivedClass
:
BaseClass
{
11
protected override
EventHandler
value
() {}
12
}
13