As I mentioned earlier, when you try to use a JScript .NET array when a CLR array is expected, we create a copy. But when you go the other way, things are a little different. Rather than producing a copy, using a CLR array as a JScript .NET array "wraps it up". No copy is made. The operation is therefore efficient and preserves identity. Changes made to a wrapped array are preserved
Read More...