1
Reply

What’s the difference between the System.Array.CopyTo() and System.Array.Clone() ?

Davronbek Umirov

Davronbek Umirov

Jun 22, 2016
199
0

    System.Array.CopyTo() needs destination array to copy the values from source array.System.Array.Clone() itself creates a new array, and duplicate the source array values.

    Ayappan Alagesan
    February 12, 2017
    0