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
use MOONLIGHT symbol
[mcs.git]
/
errors
/
cs0029-9.cs
blob
8f3ce68263287500ab4a2bb3d6a7cf18da8c16a3
1
// CS0029: Cannot implicitly convert type `int' to `System.EventHandler'
2
// Line: 12
3
4
using
System
;
5
6
class
C
7
{
8
static event
EventHandler h
;
9
10
public static void
Main
()
11
{
12
h
=
0
;
13
}
14
}