a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
28 lines
319 B
C#
28 lines
319 B
C#
// CS1019: 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)
|
|
{
|
|
|
|
}
|
|
}
|