Hi All
I am a little new to C# and scripting so I have what is a basic question. Say I have an array of Vector3[ ] and in another class I also want to use that array if I do myclass.points = otherclass.points; does that do a reference/pointer to the same array or does it build a whole new array and copy the values over? I assume the first. I am just wondering if it is slow to do this or not.
Mike
Yes, in C# array is reference type.
To duplicate array you should use Array.Clone() method.