What’s the difference between the System.Array.CopyTo() and System.Array.Clone()?
System.Array.CopyTo()
System.Array.Clone()
Array.Clone doesn't require a target/destination array to be available when calling the function, whereas Array.CopyTo requires a destination array and an index.