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-06-21 Atsushi Enomoto <atsushi@ximian.com>
[mcs.git]
/
errors
/
dcs0111.cs
blob
c50bf0b56947f9619cd4ce8ffd8c9fe2cfd19f74
1
// CS0111: A member `C.Method(object)' is already defined. Rename this member or use different parameter types
2
// Line: 10
3
4
class
C
5
{
6
void
Method
(
dynamic
d
)
7
{
8
}
9
10
void
Method
(
object
d
)
11
{
12
}
13
}