0

I have an integer Array of 5 elements which is filled with dummy data. The question is how can I create a deep copy of this array.I am working in c#.net Suppose I have int[] Array1 = new int[5];

Thanks in advance

Khizar
  • 319
  • 2
  • 8
  • 20

1 Answers1

1

Clone() is good enough. refer this thread for more information.

Community
  • 1
  • 1
Aravind
  • 4,125
  • 1
  • 28
  • 39