Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/errors/cs0070.cs')
-rw-r--r--mcs/errors/cs0070.cs30
1 files changed, 0 insertions, 30 deletions
diff --git a/mcs/errors/cs0070.cs b/mcs/errors/cs0070.cs
deleted file mode 100644
index 826c97b301a..00000000000
--- a/mcs/errors/cs0070.cs
+++ /dev/null
@@ -1,30 +0,0 @@
-// cs0070.cs : The event 'Click' can only appear on the left-side of a += or -= (except when used from within the type 'Button')
-// Line : 20
-
-using System;
-
-public delegate void EventHandler (int i, int j);
-
-public class Button {
-
- public event EventHandler Click;
-
-}
-
-public class Blah {
-
- Button Button1 = new Button ();
-
- public void Connect ()
- {
- Button1.Click = new EventHandler (Button1_Click);
- }
-
- public void Button1_Click (int i, int j)
- {
- }
-
- public static void Main ()
- {
- }
-}