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
2009-07-20 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0505-3.cs
blob
66893f9dd599783080aaea682bee84eb5d2591d7
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
EventHandler
value
;
8
}
9
10
class
DerivedClass
:
BaseClass
{
11
protected override void value
() {}
12
}
13