19 lines
164 B
C#
19 lines
164 B
C#
|
interface IFoo
|
||
|
{
|
||
|
object Clone ();
|
||
|
}
|
||
|
|
||
|
class CS0102 : IFoo
|
||
|
{
|
||
|
object IFoo.Clone()
|
||
|
{
|
||
|
return this;
|
||
|
}
|
||
|
|
||
|
public class Clone { }
|
||
|
|
||
|
public static void Main ()
|
||
|
{
|
||
|
}
|
||
|
}
|