Ejemplo n.º 1
0
 public MyVectorArr(MyVectorArr vec)
 {
     arr = new int[vec.ToArray().Length];
     Array.Copy(vec.ToArray(), arr, arr.Length);
 }