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
avoid using a custom sources file for the net_2_1_raw profile
[mcs.git]
/
errors
/
cs0019-30.cs
blob
95d03e19d845d461e757909cf4246c7db27ef97b
1
// CS0019: Operator `!=' cannot be applied to operands of type `Test.DelegateA' and `Test.DelegateB'
2
// Line: 13
3
4
using
System
;
5
6
public class
Test
7
{
8
public delegate int
DelegateA
(
bool
b
);
9
public delegate int
DelegateB
(
bool
b
);
10
11
static bool
TestCompare
(
DelegateA a
,
DelegateB b
)
12
{
13
return
a
!=
b
;
14
}
15
}