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
Can I use parseint?
What is the difference between malloc () and new?
Is a valid int value?
Which constructor is called first in c#?
Does c# provide copy constructor?
Explain “static” keyword in c#?
What is a struct in C#?
What is c sharp language?
Can you inherit from a static class in c#?
How to block a class from being inherited further?
What is Private Constructor? and it’s use? Can you create instance of a class which has Private Constructor?
Can delegates be used as callbacks?
Why is main static in c#?
What is gui in c#?
Should I use double or float?