Saved Bookmarks
| 1. |
What Is 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. |
|