Copy() public method

Creates a copy of the proc that has the same target, context, self object as this instance. Doesn't copy instance data. Preserves the class of the Proc.
public Copy ( ) : Proc
return Proc
Ejemplo n.º 1
0
 public static Proc/*!*/ Clone(Proc/*!*/ self) {
     return self.Copy();
 }
Ejemplo n.º 2
0
 public static Proc /*!*/ Clone(Proc /*!*/ self)
 {
     return(self.Copy());
 }