What’s the difference between the System.Array.CopyTo() and System.Array.Clone()?
System.Array.CopyTo()
System.Array.Clone()
Clone() is used to copy only structure of data/array it doesn't copy the actual data.
Clone()
CopyTo() copies the structure as well as actual data.
CopyTo()