0

Is deep copy possible in flex 4.5?

ketan
  • 19,129
  • 42
  • 60
  • 98
Sushant
  • 635
  • 2
  • 8
  • 19

1 Answers1

2

There is a built in function for a deep copy in Flex.

import mx.utils.ObjectUtil;

var NewObj:Type = ObjectUtil.copy(Old);
Jeames Bone
  • 564
  • 4
  • 12