C# (Sharp) Programming Language Question:
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.
Previous Question | Next Question |
How can I create a process that is running a supplied native executable (e.g., cmd.exe)? | How do I declare inout arguments in C#? |