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
Beispiel #1
0
 public static Proc/*!*/ Clone(Proc/*!*/ self) {
     return self.Copy();
 }
Beispiel #2
0
 public static Proc /*!*/ Clone(Proc /*!*/ self)
 {
     return(self.Copy());
 }