Array.CopyTo()

  • Thread starter Thread starter JS
  • Start date Start date
J

JS

The current method is:

void Array.CopyTo(Array dest, int index);

Am I the only one or do other people wish this method had an overload:

void Array.CopyTo(Array dest, int destIndex, int count);
 
JS,

did you try the Array.Copy shared method. Wouldn't that accomplish what you're
looking for?

Imran.
 
Back
Top