Copy() 공개 메소드

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