示例#1
0
 // Con interface
 static void Copiar(ICloneable o)
 {
     if (o != null)
     {
         o.Clonar();
     }
 }