| 123456789101112131415161718192021222324252627 |
- // cs1019.cs : Overloadable unary operator expected
- // Line : 18
- public class MyClass {
- public int this[int ndx]
- {
- get { }
- set { }
- }
- public event EventHandler Click
- {
- add { }
- remove { }
- }
- public static MyClass operator/ (MyClass i)
- {
-
- }
- public static implicit operator MyClass (Object o)
- {
- }
- }
|