blob: ccb60fb66c0383797731edb144272bab3d1369ff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// CS0737: `MyTest' does not implement interface member `System.ICloneable.Clone()' and the best implementing candidate `MyTest.Clone()' is not public
// Line: 6
using System;
public class MyTest : ICloneable
{
object Clone()
{
return MemberwiseClone();
}
}
|