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

cs0536.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 38225f861d8cda5bd432910484928016b5785eab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// cs0536.cs: `MyTest' does not implement interface member `System.ICloneable.Clone()'. `MyTest.Clone()' is either static, not public, or has the wrong return type
// Line: 4
using System;
public class MyTest : ICloneable {
	object Clone(){
		return MemberwiseClone();
	}

	static void Main ()
	{
	}
}