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

cs0111-2.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 659e6f45863a125253e053f56bfcde3218b6fec3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// CS0111: A member `N.MyClass.N.IMyInterface.MyEvent' is already defined. Rename this member or use different parameter types
// Line: 18

namespace N
{
	interface IMyInterface
	{
		bool MyEvent { set; }
	}

	public class MyClass : IMyInterface
	{
		bool IMyInterface.MyEvent
		{
			set { }
		}

		bool N.IMyInterface.MyEvent
		{
			set { }
		}
	}
}