cs1019.cs 324 B

123456789101112131415161718192021222324252627
  1. // cs1019.cs : Overloadable unary operator expected
  2. // Line : 18
  3. public class MyClass {
  4. public int this[int ndx]
  5. {
  6. get { }
  7. set { }
  8. }
  9. public event EventHandler Click
  10. {
  11. add { }
  12. remove { }
  13. }
  14. public static MyClass operator/ (MyClass i)
  15. {
  16. }
  17. public static implicit operator MyClass (Object o)
  18. {
  19. }
  20. }