Vereis, quiero copiar un array así:
int[] a=new int[20];
int[] b=new int[10];
b=a;
Es decir, quiero copiar los 10 primero elementos de a en b. Esto no me da error, pero me provoca un error de memoria más tarde. Lo he corregido con un bucle y he resuelto el problema, pero "supongo" que habrá una forma mejor de hacerlo...
¿y esa forma es...?
Has probado con Copy?
http://msdn.microsoft.com/library/default....sscopytopic.aspCitar
Copies a range of elements from an Array starting at the first element and pastes them into another Array starting at the first element. The length is specified as a 32-bit integer.
[C#] public static void Copy(Array, Array, int);
Copies a range of elements from an Array starting at the specified source index and pastes them to another Array starting at the specified destination index. The length and the indexes are specified as 32-bit integers.
[C#] public static void Copy(Array, int, Array, int, int);
Porque << The sourceArray and destinationArray parameters must have the same number of dimensions >> se refiere al Rango, no a la Longitud, no? (no he probado).
Bueno, parece que se refiere a longitud (y para multidimensionales los serializa en un vector), pero parece que servirá. Prueba a ver y nos cuentas:
http://msdn.microsoft.com/library/default....scopytopic3.asp
Array.Copy funciona genial. Muchas gracias (ole)