InterviewSolution
Saved Bookmarks
| 1. |
What's The Difference Between The System.array.copyto() And System.array.clone()? |
|
Answer» The FIRST ONE performs a deep COPY of the array, the second one is SHALLOW. The first one performs a deep copy of the array, the second one is shallow. |
|