1
Reply

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

    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.