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

cs1019.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4fe30f842f7dc9813da0099c40a5848dc42d5b90 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// 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)
	{

	}
}