What?s the difference between the System.Array.CopyTo() and
System.Array.Clone()?
Answer Posted / kishore anumala
Clone creates the new array of same length of an existing
array and then copies the data.
Where as copyto copies the data from source to destination
array. Copyto does not creates any new array.
| Is This Answer Correct ? | 10 Yes | 2 No |
Post New Answer View All Answers
What are the advantages of constructor?
What is private variable?
Can we have 2 main methods in c#?
What is trim in c#?
What is object array in c#?
What is “using” statement in c#?
What benefit do you get from using a primary interop assembly (pia)?
What is windows form in c#?
How to rotate an Image in C#?
What is the difference between the debug class and trace class? Documentation looks the same.
What is the difference between method parameters and method arguments. Give an example?
What is iqueryable?
Describe how a .net application is compiled and executed
How to find out that the code is written as managed or un-managed code?
What is the diff between the System.Array.CopyTo() and System.Array.Clone()?