Back to slide -- Keyboard shortcut: 'u'        next -- Keyboard shortcut: 'n'          interfaces/reproductions/ICloneable.cs - A reproduction of the interface ICloneable.Lecture 8 - slide 31 : 37
Program 1

using System;

public interface ICloneable{
  Object Clone();
}