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

Answers were Sorted based on User's Feedback



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

Answer / rajesh

The Clone() method returns a new array (a shallow copy)
object containing all the elements in the original array.
The CopyTo() method copies the elements into another
existing array. Both perform a shallow copy. A shallow
copy means the contents (each array element) contains
references to the same object as the elements in the
original array. A deep copy (which neither of these
methods performs) would create a new instance of each
element's object, resulting in a different, yet identacle
object.

Is This Answer Correct ?    7 Yes 1 No

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

Answer / guest

The first one performs a deep copy of the array, the second
one is shallow

Is This Answer Correct ?    0 Yes 3 No

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

Answer / ranjanatyagi

the first one copy both the data and the structure i.e.
schema of the arry and the second one copy only the
structuere not data.

Is This Answer Correct ?    1 Yes 4 No

Post New Answer

More C Sharp Interview Questions

What is difference between array and collection?

0 Answers  


Explain the three services model (three-tier application). Presentation (ui), business (logic and underlying code) and data (from storage or other sources).

0 Answers  


What are the types of parameters in c#?

0 Answers  


What are the types of comment in c# with examples?

0 Answers  


What is the difference between list and array in c#?

0 Answers  






Difference between abstract classes and interfaces

0 Answers  


What is difference between iqueryable and ienumerable in c#?

0 Answers  


What is final keyword in c#?

0 Answers  


What is the difference between ref & out parameters?

2 Answers  


What is a dimensional array?

0 Answers  


What is application c#?

0 Answers  


What is hashmap in c#?

0 Answers  


Categories