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
monotouch uses the real HttpWebRequest
[mcs.git]
/
tests
/
gtest-240.cs
blob
35fd4057f2c3f37758421829fd33d7f9b9a73b0f
1
using
System
;
2
3
interface
IMyInterface
<
T
>
4
{
5
event
EventHandler MyEvent
;
6
}
7
8
public class
MyClass
:
IMyInterface
<
string
>,
IMyInterface
<
int
>
9
{
10
event
EventHandler IMyInterface
<
string
>.
MyEvent
11
{
12
add
{}
13
remove
{}
14
}
15
16
event
EventHandler IMyInterface
<
int
>.
MyEvent
17
{
18
add
{}
19
remove
{}
20
}
21
22
}
23
24
class
X
25
{
26
static void
Main
()
27
{ }
28
}