CopyTo() public méthode

public CopyTo ( System array, int arrayIndex ) : void
array System
arrayIndex int
Résultat void
 static public int CopyTo(IntPtr l)
 {
     try {
         System.Text.RegularExpressions.MatchCollection self = (System.Text.RegularExpressions.MatchCollection)checkSelf(l);
         System.Array a1;
         checkType(l, 2, out a1);
         System.Int32 a2;
         checkType(l, 3, out a2);
         self.CopyTo(a1, a2);
         pushValue(l, true);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }