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-01-03 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
errors
/
cs0407-4.cs
blob
bee931b71eded4f3398fd9e6dac75b4306679c6a
1
// CS0407: A method or delegate `TestDelegateA MainClass.Method(bool)' return type does not match delegate `int TestDelegateA(bool)' return type
2
// Line: 12
3
4
delegate int
TestDelegateA
(
bool
b
);
5
6
public class
MainClass
7
{
8
static
TestDelegateA
Method
(
bool
b
)
9
{
10
return
Method
;
11
}
12
}
13